{ "name": "@ali/lowcode", "private": true, "scripts": { "reinstall": "./scripts/reinstall.sh", "bootstrap": "lerna bootstrap --hoist", "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", "babel-eslint": "^10.0.3", "eslint": "^6.5.1", "ava": "^1.0.1", "commitizen": "^3.0.5", "cz-conventional-changelog": "^2.1.0", "git-cz": "^4.3.1", "husky": "^1.3.1", "lerna": "^2.11.0", "lint-staged": "^8.1.0", "prettier": "^1.15.3", "ts-node": "^7.0.1", "typescript": "^3.2.2", "tslib": "^1.9.3" }, "workspaces": { "packages": [ "packages/*" ], "nohoist": [] }, "engines": { "node": "^10" }, "lint-staged": { "*.{tsx,ts}": [ "eslint --fix", "git add" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" } } }