forked from sebelga/gstore-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·117 lines (117 loc) · 3.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "gstore-node",
"version": "7.2.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": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"postbuild": "bash scripts/post_build.sh",
"commit": "git-cz",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"cover": "yarn cover:unit && yarn cover:integration && yarn cover:report",
"cover:unit": "DATASTORE_EMULATOR_HOST=localhost:8081 nyc --exclude-after-remap false yarn test:unit",
"cover:integration": "nyc --silent --no-clean yarn test:integration",
"cover:report": "nyc report --reporter=lcov --reporter=html",
"lint": "./node_modules/eslint/bin/eslint.js ./src ./test",
"local-datastore": "gcloud beta emulators datastore start --consistency=1.0 --no-store-on-disk",
"pretest": "yarn lint",
"release": "yarn build && standard-version",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "DATASTORE_EMULATOR_HOST=localhost:8081 mocha test --exclude test/integration/**/*.* --recursive --colors --exit",
"test:integration": "DATASTORE_EMULATOR_HOST=localhost:8081 mocha test/integration --recursive --colors --exit"
},
"engines": {
"node": ">=10.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"
}
],
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"arrify": "^2.0.1",
"dataloader": "^1.4.0",
"extend": "^3.0.2",
"is": "^3.3.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"moment": "^2.24.0",
"nsql-cache": "^1.1.4",
"nsql-cache-datastore": "^1.1.6",
"optional": "^0.1.4",
"promised-hooks": "^3.1.0",
"validator": "^11.1.0"
},
"devDependencies": {
"@google-cloud/datastore": "^4.0.0",
"@hapi/joi": "^15.1.1",
"@types/arrify": "2.0.1",
"@types/extend": "^3.0.1",
"@types/is": "^0.0.21",
"@types/jest": "^24.0.18",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"cache-manager-redis-store": "^1.5.0",
"chai": "^4.2.0",
"chance": "^1.1.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.6",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nconf": "^0.10.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"redis-mock": "^0.46.0",
"rimraf": "3.0.0",
"sinon": "^7.4.2",
"standard-version": "^7.0.0",
"typescript": "^3.6.3",
"yargs": "^14.0.0"
},
"peerDependencies": {
"@google-cloud/datastore": ">= 4.2.0 < 5"
}
}