-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "datastore-env",
"version": "1.2.5",
"description": "Retrieve .env from google datastore",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha -w test/",
"test:ci": "mocha test/",
"datastore": "gcloud beta emulators datastore start --no-store-on-disk"
},
"bin": {
"datastore-env": "./datastoreEnv.js"
},
"engines": {
"node": ">=7.6"
},
"keywords": [
"google-datastore",
"datastore",
".env",
"env",
"dotenv",
"google",
"cloud"
],
"author": "",
"license": "NoHarm",
"dependencies": {
"@google-cloud/datastore": "^1.4.0",
"lodash": "^4.17.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-files": "^1.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"mocha": "^5.0.5"
}
}