charlike
Version:
Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options
86 lines (85 loc) • 1.81 kB
JSON
{
"name": "#{name}",
"version": "0.1.0",
"description": "#{description}",
"repository": "#{repository}",
"author": "#{author}",
"precommit.silent": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "standard **/*.js --fix --verbose",
"test": "npm-run-all -s lint test:*",
"test:api": "nyc --reporter lcov node test.js",
"test:report": "nyc report",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"git": "npm-run-all -s git:*",
"git:add": "git add --all",
"git:cz": "git-cz",
"commit": "npm-run-all -s test build git",
"build": "npm-run-all -s build:*",
"build:clean": "rimraf dist",
"build:bundle": "rollup -c",
"build:show": "ls -al dist"
},
"dependencies": {},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^1.2.0",
"mukla": "^0.4.8",
"npm-run-all": "^4.0.1",
"nyc": "^10.1.2",
"pre-commit": "^1.2.2",
"standard": "^8.6.0",
"standard-version": "^4.0.0"
},
"files": [
"index.js"
],
"keywords": [],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard": {
"ignore": [
"dist/**"
]
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"minibase",
"try-catch-core"
],
"highlight": "always-done"
},
"lint": {
"reflinks": true
}
},
"engines": {
"node": ">=4",
"npm": ">=2"
},
"nyc": {
"check-coverage": true,
"statements": 0,
"functions": 0,
"branches": 0,
"lines": 0
}
}