vue3-yuanma/package.json

64 lines
1.8 KiB
JSON
Raw Normal View History

2018-09-19 23:35:38 +08:00
{
"private": true,
2019-12-11 10:29:52 +08:00
"version": "3.0.0-alpha.0",
2018-09-19 23:35:38 +08:00
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
2019-12-11 00:31:57 +08:00
"size-runtime": "node scripts/build.js runtime-dom size-check -p -f global",
"size-compiler": "node scripts/build.js compiler-dom -p -f global",
2019-10-03 05:45:02 +08:00
"size": "yarn size-runtime && yarn size-compiler",
"lint": "prettier --write --parser typescript \"packages/**/*.ts?(x)\"",
2019-12-03 07:18:02 +08:00
"test": "node scripts/build.js vue -f global -d && jest",
2019-12-11 07:24:59 +08:00
"test-dts": "node scripts/build.js reactivity runtime-core runtime-dom -t -f esm && tsd",
2020-01-03 07:07:42 +08:00
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"types": "test-dts/index.d.ts",
"tsd": {
"directory": "test-dts"
2018-09-19 23:35:38 +08:00
},
2018-09-19 23:37:18 +08:00
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
2018-09-19 23:37:18 +08:00
"prettier --parser=typescript --write",
"git add"
]
},
2018-09-19 23:35:38 +08:00
"devDependencies": {
"@microsoft/api-extractor": "^7.3.9",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-replace": "^2.2.1",
2019-10-30 23:52:08 +08:00
"@types/jest": "^24.0.21",
2019-12-03 07:18:02 +08:00
"@types/puppeteer": "^2.0.0",
"brotli": "^1.3.2",
2019-08-20 22:50:43 +08:00
"chalk": "^2.4.2",
2020-01-03 07:07:42 +08:00
"conventional-changelog-cli": "^2.0.31",
2019-12-11 07:24:59 +08:00
"enquirer": "^2.3.2",
2019-08-20 22:01:23 +08:00
"execa": "^2.0.4",
"fs-extra": "^8.1.0",
2019-08-20 22:50:43 +08:00
"jest": "^24.9.0",
2019-08-20 22:01:23 +08:00
"lint-staged": "^9.2.3",
2018-09-19 23:35:38 +08:00
"minimist": "^1.2.0",
2019-10-22 23:52:29 +08:00
"prettier": "~1.14.0",
2019-12-03 07:18:02 +08:00
"puppeteer": "^2.0.0",
2019-08-20 22:34:25 +08:00
"rollup": "^1.19.4",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.24.0",
2019-12-11 10:29:52 +08:00
"semver": "^6.3.0",
2019-08-20 22:50:43 +08:00
"ts-jest": "^24.0.2",
2019-11-23 07:09:26 +08:00
"tsd": "^0.11.0",
2019-11-06 06:37:16 +08:00
"typescript": "^3.7.0",
2018-09-19 23:37:18 +08:00
"yorkie": "^2.0.0"
2018-09-19 23:35:38 +08:00
}
}