forked from borisovg/pug-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 906 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
{
"name": "@anduh/pug-cli",
"version": "1.0.0-alpha8",
"description": "a PUG (3) CLI interface",
"directories": {
"man": "man"
},
"bin": {
"pug3": "./index.js"
},
"preferGlobal": true,
"keywords": ["pug", "pug-cli", "html", "cli"],
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"pug": "^3.0.2",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"istanbul": "*",
"mocha": "*",
"rimraf": "*"
},
"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*",
"man": "man ./pug3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Anduh/pug-cli.git"
},
"license": "MIT"
}