-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "env-var-helpers",
"version": "5.2.0",
"description": "Grab quick info from common environment variables (NODE_ENV, LOG_LEVEL, etc.). Convenience methods.",
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/"
],
"test": "npm run test",
"scripts": {
"compile-ts": "./node_modules/typescript/bin/tsc -p ./",
"compile-ts:watch": "./node_modules/typescript/bin/tsc -p ./ --watch",
"boilerplate-check": "./script/ensure-fully-implemented.rb",
"start": "npm run test",
"test": "npm run compile-ts; ./test/test-runner.sh",
"test:watch": "chokidar ./lib/** ./config/** ./test/** --initial -c \"mocha test/\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/andfaulkner/env-var-helpers.git#v5.2.0"
},
"keywords": [
"environment",
"environment-variables",
"config",
"variables",
"configuration",
"configuration-management",
"project-config",
"project-configuration",
"configuration",
"environment-config",
"env-config",
"env-configuration",
"environment-configuration",
"NODE_ENV",
"LOG_LEVEL",
"QA",
"UAT",
"deployment",
"orchestration",
"release",
"helpers",
"utils"
],
"author": "Andrew Faulkner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andfaulkner/env-var-helpers/issues"
},
"homepage": "https://github.com/andfaulkner/env-var-helpers#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.2",
"@types/node": "8.10.0",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"colors": "^1.1.2",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-promise": "^3.8.0",
"lodash": "^4.17.10",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.14.3",
"sinon": "^6.0.0",
"test-console": "^1.1.0",
"ts-node": "^6.1.1",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "2.9.2",
"vrsource-tslint-rules": "^5.8.2"
},
"peerDependencies": {
"lodash": "^4.x"
}
}