-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
38 lines (38 loc) · 902 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
{
"name": "getenv",
"description": "Get and typecast environment variables.",
"author": "Christoph Tavan <[email protected]>",
"contributors": [
"Moritz von Hase",
"Jonas Dohse <[email protected]>",
"Jan Lehnardt",
"Tim Ruffles <[email protected]>",
"Ashwani Agarwal <[email protected]>"
],
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/ctavan/node-getenv",
"repository": {
"type": "git",
"url": "git://github.com/ctavan/node-getenv.git"
},
"main": "index.js",
"scripts": {
"prettier": "prettier --write *.{js,md} **/*.js",
"test": "bash -ec 'for F in test/*.js; do echo \"$F\": ; node $F; done;'"
},
"engines": {
"node": ">=6"
},
"dependencies": {},
"devDependencies": {
"prettier": "^1.18.2"
},
"keywords": [
"env",
"environment",
"config",
"configuration",
"12factor"
]
}