tb-cli
Version:
A simple CLI for scaffolding TB.
77 lines (76 loc) • 1.96 kB
JSON
{
"name": "tb-cli",
"version": "2.1.3",
"description": "A simple CLI for scaffolding TB.",
"bin": {
"tb": "bin/tb.js",
"tb-init": "bin/tb-init.js",
"tb-theme": "bin/tb-theme.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TB-blog/TB-CLI.git"
},
"keywords": [
"tb",
"cli",
"ssr",
"vue",
"blog"
],
"author": "Trevor <xizhouh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TB-blog/TB-CLI/issues"
},
"homepage": "https://github.com/TB-blog/TB-CLI#readme",
"scripts": {
"test": "npm run lint && jest --cache --silent",
"cov": "npm run lint && jest --coverage --cache --silent",
"codecov": "cat ./coverage/lcov.info | codecov",
"ci": "npm run lint && npm run cov",
"lint": "eslint __test__/**/*.js lib bin/* jest.*.js",
"lint-fix": "eslint --fix __test__/**/*.js lib bin/* jest.*.js",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint-fix"
],
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"download-git-repo": "^1.0.2",
"inquirer": "^5.2.0",
"ora": "^2.1.0",
"request": "^2.85.0",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"shelljs": "^0.8.2"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^21.2.1",
"pre-commit": "^1.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=8.0.0"
}
}