-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "level-codec",
"version": "10.0.0",
"description": "Encode keys, values and range options, with built-in or custom encodings",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "standard && hallmark && nyc tape test/*.js",
"test-browsers-local": "airtap --coverage --verbose test/*.js",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check . test/*.js",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"lib",
"index.js",
"CHANGELOG.md",
"CONTRIBUTORS.md",
"LICENSE.md",
"UPGRADING.md"
],
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"airtap": "^4.0.3",
"airtap-playwright": "^1.0.1",
"dependency-check": "^3.3.0",
"hallmark": "^3.1.0",
"level-community": "^3.0.0",
"nyc": "^15.1.0",
"standard": "^17.0.0",
"tape": "^5.0.1"
},
"hallmark": {
"community": "level-community"
},
"repository": "Level/codec",
"homepage": "https://github.com/Level/codec",
"keywords": [
"level"
],
"engines": {
"node": ">=10"
}
}