-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nsql-cache",
"version": "1.1.5",
"description": "Advanced cache layer for NoSQL databases",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint ./lib && eslint ./test",
"pretest": "npm run lint",
"prettier": "prettier --write \"{lib,test}/**/*.js\"",
"test": "mocha test --recursive --exit",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --recursive --exit",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec --recursive --exit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prerelease": "npm run test",
"release": "standard-version"
},
"pre-commit": [
"prettier"
],
"engines": {
"node": ">=6.0"
},
"keywords": [
"cache",
"google datastore",
"gcloud node",
"google app engine",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebelga/nsql-cache.git"
},
"author": "Sébastien Loix",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/sebelga/nsql-cache/issues"
},
"homepage": "https://github.com/sebelga/nsql-cache#readme",
"dependencies": {
"arrify": "^1.0.1",
"cache-manager": "^2.9.0",
"extend": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"cache-manager-redis-store": "^1.4.0",
"chai": "^3.5.0",
"commitizen": "^2.9.6",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.6.0",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"redis-mock": "^0.21.0",
"require-uncached": "^1.0.3",
"sinon": "^4.2.0",
"standard-version": "^4.3.0",
"yargs": "11.0.0"
}
}