forked from pugjs/pug-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.06 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@tokilabs/pug3-cli",
"version": "3.0.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "A cli for Pug 3.0.2 with many fixes and improvements",
"repository": {
"type": "git",
"url": "https://github.com/tokilabs/pug3-cli.git"
},
"directories": {
"man": "man"
},
"bin": {
"pug3": "./index.js"
},
"preferGlobal": true,
"keywords": [
"pug",
"pug3",
"pug-cli",
"pug3-cli",
"html",
"cli"
],
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"debug": "^4.3.4",
"gray-matter": "^4.0.2",
"js-yaml": "^4.1.0",
"mkdirp": "^1.0.4",
"pug": "^3.0.2"
},
"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 ./man/pug3.0.2"
},
"license": "MIT"
}