-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.91 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.91 KB
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
{
"name": "envsub",
"version": "4.1.0",
"description": "envsub is envsubst for Node.js",
"author": "Daniel Lewis BSc(Hons)",
"license": "ISC",
"main": "envsub.js",
"bin": {
"envsub": "bin/envsub.js",
"envsubh": "bin/envsubh.js"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover -x \"**/*.spec.js\" ./node_modules/mocha/bin/_mocha -- --colors test",
"enforcer": "./node_modules/.bin/istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"build": "npm-run-all test enforcer"
},
"husky": {
"hooks": {
"pre-push": "npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/danday74/envsub.git"
},
"bugs": {
"url": "https://github.com/danday74/envsub/issues"
},
"homepage": "https://github.com/danday74/envsub#readme",
"keywords": [
"envsub",
"envsubh",
"envsubst",
"env",
"env expansion",
"environment variable expansion",
"env replacement",
"environment variable replacement",
"env substitution",
"environment variable substitution",
"env template",
"environment variable template",
"env templating",
"environment variable templating",
"handlebars env",
"handlebars environment variables",
"docker template",
"docker templating"
],
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"diff": "^4.0.1",
"handlebars": "^4.5.3",
"lodash": "^4.17.15",
"replace-last": "^1.2.6",
"string.prototype.matchall": "^4.0.8"
},
"devDependencies": {
"app-root-path": "^3.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"data-driven": "^1.4.0",
"del": "^5.1.0",
"eslint": "^6.7.1",
"husky": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
},
"engine": "node >= 8"
}