-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "open-cached",
"version": "0.1.0",
"description": "cache methods with ioredis",
"main": "index.js",
"scripts": {
"lint": "eslint ./index.js",
"test": "jest",
"test:watch": "jest --watch .",
"readme": "d=`head -n 30 README.md` && t=`tail -n 32 README.md` && (echo \"$d\n\n\n\" && documentation build index.js -f md && echo \"\n\n$t\n\") > README.md",
"release": "npm run readme && npm publish --registry=https://registry.npmjs.org",
"ci": "npm run lint && npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-node/open-cached.git"
},
"keywords": ["cache", "redis"],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/open-cached/issues"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^22.0.1",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.3.0",
"pre-commit": "^1.2.2"
},
"homepage": "https://github.com/open-node/open-cached#readme"
}