-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
61 lines (61 loc) · 1.34 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
56
57
58
59
60
61
{
"name": "level",
"version": "8.0.1",
"description": "Universal abstract-level database for Node.js and browsers",
"license": "MIT",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "standard && ts-standard *.ts && nyc node test.js",
"test-browsers-local": "airtap --coverage test.js && nyc report",
"coverage": "nyc report -r lcovonly"
},
"files": [
"browser.js",
"index.js",
"index.d.ts",
"CHANGELOG.md",
"UPGRADING.md"
],
"browser": "browser.js",
"dependencies": {
"abstract-level": "^1.0.4",
"browser-level": "^1.0.1",
"classic-level": "^1.2.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@voxpelli/tsconfig": "^4.0.0",
"airtap": "^4.0.1",
"airtap-playwright": "^1.0.1",
"hallmark": "^4.0.0",
"nyc": "^15.0.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5",
"uuid": "^9.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/level"
},
"repository": {
"type": "git",
"url": "https://github.com/Level/level.git"
},
"homepage": "https://github.com/Level/level",
"keywords": [
"level",
"leveldb",
"stream",
"database",
"db",
"store",
"storage",
"json"
],
"engines": {
"node": ">=12"
}
}