Files
vue-cli/package.json
2018-02-03 21:36:11 -05:00

60 lines
1.3 KiB
JSON

{
"private": true,
"workspaces": [
"packages/@vue/*",
"packages/test/*",
"packages/vue-cli-version-marker"
],
"scripts": {
"test": "node scripts/test.js",
"pretest": "yarn clean",
"lint": "eslint --fix packages/**/*.js packages/**/bin/* test/**/*.js",
"clean": "rimraf packages/test/*",
"sync": "node scripts/syncDeps.js",
"boot": "node scripts/bootstrap.js",
"release": "yarn clean && node scripts/release.js"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/scripts/testSetup.js"
],
"testPathIgnorePatterns": [
"/template/",
"/packages/test/",
"/temp/",
"/scripts/",
".*.helper.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"packages/**/bin/*": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"axios": "^0.17.1",
"babel-core": "^7.0.0-0",
"debug": "^3.1.0",
"eslint": "^4.16.0",
"eslint-plugin-vue-libs": "^2.1.0",
"globby": "^7.1.1",
"http-server": "^0.11.1",
"jest": "^22.1.4",
"lerna": "^2.8.0",
"lint-staged": "^6.0.1",
"memfs": "^2.6.0",
"puppeteer": "^1.0.0",
"yorkie": "^1.0.2"
}
}