-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "browser-level",
"version": "2.0.0",
"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 --coverage test/index.js && nyc report",
"coverage": "nyc report -r lcovonly"
},
"files": [
"index.js",
"index.d.ts",
"iterator.js",
"util",
"CHANGELOG.md",
"UPGRADING.md"
],
"dependencies": {
"abstract-level": "^2.0.1"
},
"devDependencies": {
"@voxpelli/tsconfig": "^4.0.0",
"airtap": "^5.0.0",
"airtap-playwright": "^1.0.1",
"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"
]
}