-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "browser-level",
"version": "1.0.1",
"description": "An abstract-level database for browsers, backed by IndexedDB",
"author": "max ogden",
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "standard && hallmark && airtap -p local --coverage test/index.js && nyc report",
"test-browsers": "standard && airtap --coverage test/index.js",
"coverage": "nyc report -r lcovonly",
"dependency-check": "dependency-check --no-dev .",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"index.js",
"index.d.ts",
"iterator.js",
"util",
"CHANGELOG.md",
"UPGRADING.md",
"sauce-labs.svg"
],
"dependencies": {
"abstract-level": "^1.0.2",
"catering": "^2.1.1",
"module-error": "^1.0.2",
"run-parallel-limit": "^1.1.0"
},
"devDependencies": {
"@voxpelli/tsconfig": "^4.0.0",
"airtap": "^4.0.4",
"airtap-playwright": "^1.0.1",
"airtap-sauce": "^1.1.0",
"dependency-check": "^4.1.0",
"hallmark": "^4.1.0",
"nyc": "^15.0.0",
"standard": "^17.0.0",
"tape": "^5.5.2",
"typescript": "^4.5.5",
"uuid": "^3.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/browser-level.git"
},
"homepage": "https://github.com/Level/browser-level",
"keywords": [
"level",
"leveldb",
"indexeddb",
"abstract-level"
]
}