-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "datastore-keyutil",
"version": "0.1.0",
"description": "Utility for improved manipulation of Google Datastore entity keys.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Antoine Beauvais-Lacasse <antoine.beaulac@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/beaulac/datastore-keyutil.git"
},
"bugs": {
"url": "https://github.com/beaulac/datastore-keyutil/issues",
"email": "antoine.beaulac@gmail.com"
},
"license": "ISC",
"scripts": {
"prepublishOnly": "npm run build",
"docs": "typedoc --mode file --readme none --target ES5 --theme markdown --excludeExternals --excludeNotExported --excludePrivate --out docs --entryPoint 'KeyUtil' src/KeyUtil.ts",
"build": "tsc",
"test": "mocha",
"coverage": "nyc mocha",
"lint": "tslint --project ."
},
"engines": {
"node": ">=6.5"
},
"dependencies": {
"debug": "^3.1.0",
"equal-but-not-falsy": "^1.0.5",
"urlsafe-base64": "^1.0.0"
},
"peerDependencies": {
"@google-cloud/datastore": ">=1.1.0"
},
"devDependencies": {
"@google-cloud/datastore": "^1.3.3",
"@types/chai": "latest",
"@types/debug": "latest",
"@types/google-cloud__datastore": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"@types/urlsafe-base64": "latest",
"chai": "^4.1.2",
"datastore-emulator-enforcer": "^1.0.3",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.0.1",
"tslint": "^5.8.0",
"typedoc": "^0.9.0",
"typedoc-plugin-markdown": "^1.0.12",
"typescript": "^2.6.2"
},
"keywords": [
"datastore",
"google datastore",
"cloud datastore",
"google app engine",
"node.js"
]
}