-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 969 Bytes
/
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
{
"name": "datastore-emulator-enforcer",
"version": "1.0.3",
"license": "ISC",
"author": "Antoine Beauvais-Lacasse <[email protected]>",
"description": "Simple tool to ensure google-cloud datastore targets an emulator, to avoid pollution of production data.",
"keywords": [
"emulator",
"datastore",
"cloud datastore",
"google cloud datastore"
],
"main": "index.js",
"files": [
"index.js",
"emulator.env.vars.json"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/beaulac/datastore-emulator-enforcer.git"
},
"dependencies": {
"debug": "^3.1.0"
},
"devDependencies": {
"@google-cloud/datastore": "^1.3.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/sinon": "^7.0.13",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"sinon": "^4.2.2"
}
}