forked from recursivefunk/good-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "good-env",
"version": "4.0.0",
"description": "Better environment variable handling for Twelve-Factor node apps",
"main": "index.js",
"scripts": {
"test": "nyc --check-coverage --lines 85 node test/test.js",
"lint": "eslint test/ index.js",
"ci": "eslint test/ index.js && nyc --check-coverage --lines 85 node test/test.js"
},
"keywords": [
"environment",
"environment-variables",
"environment variables",
"server",
"env",
"twelve-factor",
"twelve factor",
"12-factor",
"12 factor"
],
"author": "Johnny Ray Austin <[email protected]>",
"license": "MIT",
"dependencies": {
"is_js": "^0.8.0"
},
"devDependencies": {
"dotenv": "6.2.0",
"eslint": "5.11.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"nyc": "13.1.0",
"tape": "4.9.1"
},
"engines": {
"node": ">=6.14"
}
}