-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 883 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
{
"name": "envhandlebars",
"version": "1.4.8",
"description": "Simple handlebars templating for configuration files using environment variables",
"main": "index.js",
"scripts": {
"test": "eslint *.js test-helpers/*.js test/*.js && istanbul cover -x test-helpers/** _mocha -- -R spec"
},
"bin": {
"envhandlebars": "./bin/envhandlebars"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cgmartin/envhandlebars.git"
},
"author": "Christopher Martin <[email protected]>",
"license": "MIT",
"keywords": [
"docker",
"handlebars",
"env",
"environment",
"variables",
"config",
"template"
],
"dependencies": {
"concat-stream": "^2.0.0",
"handlebars": "^4.7.7",
"minimist": "^1.2.4"
},
"devDependencies": {
"eslint": ">=6.8.0",
"istanbul": "^0.4.5",
"mocha": ">=7.1.0"
}
}