-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
38 lines (38 loc) · 999 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
38
{
"name": "pug-cli",
"version": "1.0.0-alpha6",
"description": "Pug's CLI interface",
"bin": {
"pug": "./index.js",
"pug-cli": "./index.js"
},
"preferGlobal": true,
"keywords": [],
"dependencies": {
"chalk": "^1.0.0",
"commander": "^2.8.1",
"pug": "^2.0.0-alpha7",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"istanbul": "*",
"mocha": "*",
"rimraf": "^2.3.4"
},
"scripts": {
"test": "mocha -R spec --bail",
"precoverage": "rimraf coverage && rimraf cov-pt*",
"coverage": "istanbul cover --report none --dir cov-pt0 node_modules/mocha/bin/_mocha -- -R dot",
"postcoverage": "istanbul report --include cov-pt\\*/coverage.json && rimraf cov-pt*"
},
"repository": {
"type": "git",
"url": "https://github.com/pugjs/pug-cli.git"
},
"author": "TJ Holowaychuk <[email protected]>",
"maintainers": [
"Timothy Gu <[email protected]>",
"Forbes Lindesay <[email protected]>"
],
"license": "MIT"
}