-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "dockerfilejs",
"version": "1.2.1",
"description": "Dockerfile-js, render well-formed Dockerfiles.",
"main": "dockerfile.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha ./test --recursive",
"test-no-colors": "mocha ./test --recursive --no-colors",
"test-w-coverage": "./node_modules/.bin/nyc -r lcov ./node_modules/mocha/bin/_mocha ./test/ --recursive"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/matutter/dockerfilejs.git"
},
"engines": {
"node": "^6.0.0"
},
"keywords": [
"docker",
"dockerfile",
"generator"
],
"author": "matutter <mcutter.svc@gmail.com> (https://www.npmjs.com/profile/matutter)",
"license": "ISC",
"bugs": {
"url": "https://github.com/matutter/dockerfilejs/issues"
},
"homepage": "https://github.com/matutter/dockerfilejs#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.3",
"mocha": "^5.2.0",
"nyc": "^14.1.1"
},
"dependencies": {}
}