-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.21 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
{
"name": "env2",
"version": "2.2.2",
"description": "Environment Variable Loader",
"keywords": [
"env",
"environment",
"variables",
"config",
"file",
"aws",
"lambda",
"webpack",
"universal",
"fast",
"secure",
"easy",
"tested"
],
"author": "Nelson <[email protected]> (http://www.dwyl.io)",
"contributors": [
{
"name": "Rafe Kennedy",
"email": "@rjmk <[email protected]>"
}
],
"inspired-by": "https://github.com/dshaw/env (see: http://git.io/vOjWp)",
"repository": {
"type": "git",
"url": "https://github.com/dwyl/env2"
},
"issues": {
"url": "https://github.com/dwyl/env2/issues"
},
"main": "lib/env.js",
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"decache": "^4.4.0",
"istanbul": "^0.4.5",
"pre-commit": "^1.2.2",
"tape": "^4.9.1"
},
"scripts": {
"test": "istanbul cover tape ./test/*.js",
"check-coverage": "istanbul cover tape ./test/*.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100"
},
"pre-commit": [
"check-coverage"
],
"engines": {
"node": ">= 0.10.0"
},
"license": "GPL-2.0"
}