-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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": "diskstore",
"version": "3.2.0",
"description": "a local cache implement",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"contributor": "git-contributor",
"lint": "eslint --ext .js . --fix",
"test": "npm run lint && npm run test-local",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-modules/diskstore.git"
},
"keywords": [
"cache",
"file",
"store"
],
"author": "gxcsoccer <gxcsoccer@126.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-modules/diskstore/issues"
},
"homepage": "https://github.com/node-modules/diskstore#readme",
"dependencies": {
"sdk-base": "^4.2.0"
},
"devDependencies": {
"coffee": "^5.4.0",
"egg-bin": "^5.1.0",
"eslint": "^8.16.0",
"eslint-config-egg": "12",
"git-contributor": "^1.1.0",
"mm": "^3.2.0"
},
"engines": {
"node": ">= 14.0.0"
}
}