forked from ZTO-Express/tang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.25 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.25 KB
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": "tang",
"private": true,
"scripts": {
"install": "lerna bootstrap",
"lint": "echo eslint",
"test": "npm run lint && lerna run test",
"build": "lerna run build --scope web",
"publish": "lerna publish && git commit -am \"Update version and changelog\" && git push origin master",
"clean": "lerna clean",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "standard-version"
},
"dependencies": {
"ejs": "^3.1.5",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"handlebars": "^4.7.6",
"json5": "^2.2.0",
"node-fetch": "^2.6.1",
"schema-utils": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/fs-extra": "^9.0.6",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.1.1",
"cz-customizable": "^6.3.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lerna": "^3.13.1",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"nyc": {
"include": [
"packages/**/*.ts"
],
"exclude": [
"node_modules/",
"packages/**/test/**",
"packages/**/*.spec.ts",
"packages/**/test/**/*.ts",
"packages/tang/errors/**/*"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}