-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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": "cacheman-level",
"version": "1.0.10",
"description": "Cacheman engine using leveldb",
"main": "./src/index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.{js,json,md}\" --write"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fengkx/cacheman-leveldb.git"
},
"keywords": [
"cache",
"cacheman",
"level",
"leveldb"
],
"author": "fengkx",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengkx/cacheman-level/issues"
},
"homepage": "https://github.com/fengkx/cacheman-level#readme",
"devDependencies": {
"ava": "^3.5.1",
"coveralls": "^3.0.6",
"del": "^6.0.0",
"eslint": "^8.1.0",
"mm": "^3.1.0",
"nyc": "^15.0.0",
"prettier": "^2.0.2"
},
"dependencies": {
"any-promise": "^1.3.0",
"level": "^7.0.0",
"level-ttl": "^3.1.1"
},
"ava": {
"timeout": "1m"
}
}