-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.7 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "one-utils",
"version": "1.0.1",
"license": "MIT",
"private": true,
"author": "Rain120 <1085131904@qq.com>",
"repository": {
"git": "https://github.com/Rain120/one-utils.git"
},
"maintainers": [
{
"name": "Rain120",
"email": "1085131904@qq.com"
}
],
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"add-deps": "node scripts/lerna-add-deps.js",
"build": "lerna run build --stream",
"bootstrap": "lerna bootstrap --hoist",
"release": "lerna publish from-package",
"version": "lerna version --no-git-tag-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m \"chore(release): update changelog [auto]\"",
"cleanup": "lerna run cleanup --stream --parallel",
"eslint": "eslint --fix --color --ext .ts packages/**",
"prettier": "prettier --write packages/**/**.ts",
"lint-staged": "lint-staged",
"test": "jest",
"test-cov": "jest --coverage"
},
"lint-staged": {
"packages/**/**.{ts}": [
"npm run prettier",
"npm run eslint"
]
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
],
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"camelcase": "^6.2.0",
"commander": "^6.2.0",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.5.2",
"ora": "^5.3.0",
"prettier": "^2.2.1",
"prompts": "^2.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.34.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.4.4"
}
}