gub
Version:
> 接入成本极低,快速从原有项目(可运行项目)中clone出新项目,并重写package.json,安装依赖
59 lines (58 loc) • 1.39 kB
JSON
{
"name": "gub",
"version": "0.1.13",
"description": "",
"main": "lib",
"bin": {
"gub": "./bin/index"
},
"scripts": {
"build": "babel src --out-dir lib",
"precommit": "npm run build && lint-staged && git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janryWang/gub.git"
},
"author": "janry",
"license": "MIT",
"bugs": {
"url": "https://github.com/janryWang/gub/issues"
},
"homepage": "https://github.com/janryWang/gub#readme",
"lint-staged": {
"src/*.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
]
},
"dependencies": {
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"chalk": "^2.3.2",
"cli-spinner": "^0.2.8",
"commander": "^2.15.1",
"escape-string-regexp": "^1.0.5",
"execa": "^0.10.0",
"fs-extra": "^5.0.0",
"getenv": "^0.7.0",
"git-username": "^1.0.0",
"homedir": "^0.6.0",
"inquirer": "^5.2.0",
"lz4": "^0.5.3",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"nanoid": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.5.5",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.11.x"
}
}