lowcode-engine/package.json
2020-03-27 14:02:34 +08:00

52 lines
1.2 KiB
JSON

{
"name": "@ali/lowcode",
"private": true,
"scripts": {
"reinstall": "./scripts/reinstall.sh",
"bootstrap": "lerna bootstrap",
"pub": "npm run test && lerna publish --registry http://registry.npm.alibaba-inc.com",
"lint": "eslint -p tsconfig.json",
"lint:fix": "eslint --fix -p tsconfig.json",
"build": "lerna run build",
"test": "lerna run test",
"test:snapshot": "lerna run test:snapshot",
"commit": "git-cz"
},
"devDependencies": {
"@ali/lowcode-config": "^2.0.5",
"ava": "^1.0.1",
"babel-eslint": "^10.0.3",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.5.1",
"git-cz": "^4.3.1",
"lerna": "^2.11.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"typescript": "^3.2.2",
"husky": "^4.2.3"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{tsx,ts}": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}