-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "level-ttl",
"version": "3.1.1",
"description": "Adds a 'ttl' option to levelup for puts and batches",
"author": "Rod Vagg <[email protected]> (https://github.com/rvagg)",
"license": "MIT",
"main": "./level-ttl.js",
"scripts": {
"test": "standard && hallmark && (nyc -s node test.js | faucet) && nyc report",
"coverage": "nyc report -r lcovonly",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check . test.js",
"prepublishOnly": "npm run dependency-check"
},
"files": [
"encoding.js",
"level-ttl.js"
],
"dependencies": {
"after": "~0.8.2",
"lock": "~1.1.0",
"xtend": "~4.0.1"
},
"devDependencies": {
"bytewise": ">=0.8",
"dependency-check": "^3.3.0",
"faucet": "^0.0.3",
"hallmark": "^3.1.0",
"level-concat-iterator": "^3.0.0",
"level-test": "^9.0.0",
"nyc": "^15.1.0",
"slump": "^3.0.0",
"standard": "^16.0.3",
"subleveldown": "^5.0.1",
"tape": "^5.3.1"
},
"peerDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/Level/level-ttl.git"
},
"homepage": "https://github.com/Level/level-ttl",
"keywords": [
"leveldb",
"levelup",
"level",
"ttl"
],
"engines": {
"node": ">=10"
}
}