forked from DTStack/dt-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.44 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
94
95
96
97
{
"name": "@dtinsight/dt-utils",
"version": "1.0.3",
"description": "袋鼠云前端常用工具库",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.js",
"files": [
"lib",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"sideEffects": "false",
"repository": {
"type": "git",
"url": "git+https://github.com/DTStack/dt-utils.git"
},
"author": "linhe",
"license": "MIT",
"bugs": {
"url": "https://github.com/DTStack/dt-utils/issues"
},
"homepage": "https://dtstack.github.io/dt-utils/",
"scripts": {
"build": "gulp build",
"api": "api-extractor run",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --fix --ext .js,.ts ./src",
"changelog": "gulp changelog",
"docs": "docsify serve docs",
"test": "jest --no-chche",
"prepublishOnly": "yarn lint & yarn test & yarn changelog & yarn build"
},
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@microsoft/api-extractor": "^7.7.0",
"@types/fs-extra": "^8.0.1",
"@types/gulp": "^4.0.6",
"@types/jest": "^24.0.24",
"@types/node": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"chalk": "^3.0.0",
"commitizen": "^4.0.3",
"commitlint": "^8.2.0",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.1.1",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"right-pad": "^1.0.1",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"vue-cli-plugin-commitlint": "^1.0.4",
"@commitlint/config-conventional": "^9.1.1",
"docsify-cli": "^4.4.1"
},
"dependencies": {
"lodash": "^4.17.15"
},
"config": {
"commitizen": {
"path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged & jest -u"
}
},
"lint-staged": {
"*.{.ts,.js}": [
"eslint",
"git add"
]
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"keywords": [
"uitls"
]
}