-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.07 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
{
"name": "@zonglinlee/js-utils",
"version": "0.0.4",
"description": "common utils functions",
"browser": "./dist/bundle.min.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/zonglinlee/js-utils.git"
},
"scripts": {
"test": "jest",
"lint": "eslint --ext .js src",
"bundle": "rollup -c",
"cz": "cz",
"prettier": "prettier --write .",
"prettier-check": "prettier --check ."
},
"keywords": [
"javascript",
"utils"
],
"author": "lee",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "2.8.0",
"rollup": "^3.5.0",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^1.2.0",
"element-ui": "^2.15.12",
"qs": "^6.11.0",
"vue": "^2.6.11"
},
"engines": {
"node": ">=18.12.1"
}
}