-
Notifications
You must be signed in to change notification settings - Fork 230
/
package.json
67 lines (67 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@feflow/monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"eslint": "eslint ./packages --ext .ts",
"eslint:fix": "eslint --fix ./packages --ext .ts",
"bootstrap": "lerna bootstrap --no-ci",
"build": "lerna run build --ignore @feflow/cli && lerna run build --scope @feflow/cli",
"test": "lerna run test",
"release": "lerna publish from-git --dist-tag $DIST_TAG --yes",
"prepare-husky": "husky install",
"check-npm-version": "node ./scripts/check-npm-version.js",
"prepare": "npm run prepare-husky",
"preinstall": "npm run check-npm-version",
"preversion": "lerna clean -y && lerna bootstrap"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "4.27",
"@typescript-eslint/parser": "4.27",
"chai": "^4.2.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-tencent": "^1.0.4",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^12.1.2",
"mocha": "^8.1.3",
"mocha-junit-reporter": "^1.23.3",
"mocha-multi-reporters": "^1.1.7",
"mochawesome": "^6.1.1",
"nodemon": "^2.0.15",
"nyc": "^14.1.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sinon-chai": "^3.5.0",
"ts-mocha": "^8.0.0",
"ts-node": "^8.10.2",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"changelog": {
"repo": "Tencent/feflow"
}
}