-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
executable file
·124 lines (124 loc) · 3.84 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
118
119
120
121
122
123
124
{
"name": "gstore-node",
"version": "9.1.0",
"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": "cat ./coverage/lcov.info | 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/**/**/*.* ./__tests__/**/**/*.ts",
"local-datastore": "gcloud beta emulators datastore start --consistency=1.0 --no-store-on-disk",
"pretest": "yarn lint",
"release": "yarn build && standard-version",
"test": "DATASTORE_EMULATOR_HOST=localhost:8081 jest --coverage",
"test:unit": "NODE_OPTIONS=--trace-warnings jest --c=jest.config.unit.js --coverage",
"test:integration": "DATASTORE_EMULATOR_HOST=localhost:8081 jest --c=jest.config.integration.js"
},
"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"
},
{
"name": "Hendrik J. Schalekamp",
"url": "https://github.com/carnun"
}
],
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"arrify": "^2.0.1",
"dataloader": "^1.4.0",
"date-fns": "^2.8.1",
"extend": "^3.0.2",
"is": "^3.3.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"nsql-cache": "^1.1.5",
"nsql-cache-datastore": "^1.1.6",
"optional": "^0.1.4",
"promised-hooks": "^3.1.1",
"validator": "^13.11.0"
},
"devDependencies": {
"@google-cloud/datastore": "^8.0.0",
"@hapi/joi": "^15.1.1",
"@types/arrify": "2.0.1",
"@types/chai": "^4.2.4",
"@types/chance": "^1.0.7",
"@types/extend": "^3.0.1",
"@types/hapi__joi": "^16.0.3",
"@types/is": "^0.0.21",
"@types/jest": "^25.2.1",
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
"@types/node": "^12.12.5",
"@types/sinon": "^9.0.0",
"@types/validator": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"cache-manager-redis-store": "^2.0.0",
"chai": "^4.2.0",
"chance": "^1.1.4",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^26.0.1",
"nyc": "^15.0.1",
"prettier": "^3.02.5",
"redis-mock": "^0.49.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^25.5.1",
"typescript": "^4.0.0"
},
"peerDependencies": {
"@google-cloud/datastore": ">= 4.2.0 < 7"
}
}