mirror of https://gitlab.com/octtspacc/staticoso
38 lines
970 B
JSON
38 lines
970 B
JSON
{
|
|
"name": "pug-cli",
|
|
"version": "1.0.0-alpha6",
|
|
"description": "Pug's CLI interface",
|
|
"bin": {
|
|
"pug": "./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 <tj@vision-media.ca>",
|
|
"maintainers": [
|
|
"Timothy Gu <timothygu99@gmail.com>",
|
|
"Forbes Lindesay <forbes@lindesay.co.uk>"
|
|
],
|
|
"license": "MIT"
|
|
}
|