forked from sebelga/gstore-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·97 lines (97 loc) · 2.57 KB
/
package.json
File metadata and controls
executable file
·97 lines (97 loc) · 2.57 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "gstore-node",
"version": "4.1.1",
"description": "Google Datastore Entities Modeling for Node.js. Validate the Entity properties and type before saving to the Datastore. Advanced cache to speed up entities fetching.",
"main": "index.js",
"types": "lib/index.d.ts",
"scripts": {
"commit": "git-cz",
"coverage": "nyc mocha test --recursive",
"coveralls": "nyc mocha test --recursive && nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage",
"local-datastore": "gcloud beta emulators datastore start --data-dir=$PWD/local-datastore",
"lint": "./node_modules/eslint/bin/eslint.js ./lib && eslint ./test",
"pretest": "npm run lint",
"release": "standard-version",
"test": "mocha test --recursive"
},
"engines": {
"node": ">=6.0"
},
"keywords": [
"google datastore",
"gcloud node",
"google app engine",
"node.js"
],
"repository": {
"type": "git",
"url": "https://github.com/sebelga/gstore-node.git"
},
"author": "Sébastien Loix",
"contributors": [
{
"name": "Sébastien Loix",
"url": "https://github.com/sebelga"
},
{
"name": "Micah Allen",
"url": "https://github.com/micaww"
},
{
"name": "Ricardo Machado",
"url": "https://github.com/mAiNiNfEcTiOn"
},
{
"name": "jfbenckhuijsen",
"url": "https://github.com/jfbenckhuijsen"
}
],
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@google-cloud/datastore": "^1.3.4",
"arrify": "^1.0.1",
"cache-manager": "^2.8.0",
"extend": "^3.0.1",
"gstore-cache": "1.0.0",
"is": "^3.2.1",
"moment": "^2.21.0",
"optional": "^0.1.4",
"promised-hooks": "^3.1.0",
"validator": "^9.4.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.0",
"cz-conventional-changelog": "^2.1.0",
"dataloader": "^1.4.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-mocha": "^4.11.0",
"joi": "^12.0.0",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nconf": "^0.10.0",
"nyc": "^11.4.1",
"redis-mock": "^0.21.0",
"sinon": "^4.4.2",
"standard-version": "^4.3.0",
"yargs": "^11.0.0"
}
}