-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.76 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
58
59
60
61
62
63
64
{
"name": "node-env-flag",
"description": "Little util function for simpler extracting Boolean values from ENV-variables in Node.js, i.e. true values (true, TRUE, 1) vs. false values (false, FALSE, 0).",
"keywords": [
"process",
"env",
"flag",
"flags",
"boolean",
"booleans",
"true",
"false"
],
"version": "0.1.0",
"homepage": "https://github.com/grimen/node-env-flag",
"repository": {
"type": "git",
"url": "https://github.com/grimen/node-env-flag.git"
},
"bugs": {
"web": "https://github.com/grimen/node-env-flag/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/grimen/node-env-flag/blob/MIT-LICENSE"
}
],
"author": "Jonas Grimfelt <[email protected]> (https://github.com/grimen)",
"maintainers": [
{
"name": "Jonas Grimfelt",
"email": "[email protected]",
"web": "https://github.com/grimen"
}
],
"contributors": [],
"scripts": {
"test": "npx jest",
"test-ci": "npx jest --runInBand --forceExit --detectOpenHandles --coverage",
"test-dev": "npx jest --watch",
"validate": "npx eslint \"**/*.js\"",
"coverage": "npx jest --coverage",
"coverage-codecov": "npx codecov"
},
"bin": {},
"engines": {
"node": ">= 8.x"
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.3",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"jest-tobetype": "^1.2.3"
},
"jest": {
"bail": true,
"verbose": true,
"testRegex": "test/.*\\.js",
"testEnvironment": "node"
}
}