-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "nsql-cache-datastore",
"version": "1.1.6",
"description": "Google Datastore adapter for nsql-cache",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint ./lib && eslint ./test",
"local-datastore": "rimraf ./local-datastore && gcloud beta emulators datastore start --data-dir=$PWD/local-datastore",
"pretest": "npm run lint",
"prettier": "prettier --write \"{lib,test}/**/*.js\"",
"test": "DATASTORE_EMULATOR_HOST=localhost:8081 mocha test --recursive --exit --timeout 10000 --integration",
"release": "standard-version"
},
"pre-commit": [
"prettier"
],
"engines": {
"node": ">=6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebelga/nsql-cache-datastore.git"
},
"keywords": [],
"author": "Sébastien Loix",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/sebelga/nsql-cache-datastore/issues"
},
"homepage": "https://github.com/sebelga/nsql-cache-datastore#readme",
"dependencies": {
"arrify": "1.0.1"
},
"peerDependencies": {
"nsql-cache": "^1.1.4"
},
"devDependencies": {
"@google-cloud/datastore": "^4.0.0",
"cache-manager-redis-store": "^1.4.0",
"chai": "^3.5.0",
"commitizen": "^2.9.6",
"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",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nsql-cache": "^1.1.4",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"require-uncached": "1.0.3",
"rimraf": "2.6.2",
"standard-version": "^4.3.0",
"sinon": "^4.2.0",
"yargs": "^11.0.0"
}
}