-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "vue-cli-plugin-ruoyi",
"version": "1.0.4",
"description": "vue cli plugin customized for ruoyi ui",
"scripts": {
"pretty": "prettier --loglevel warn --write \"*.{ts,js,json,yml,yaml}\"",
"lint": "eslint . --ext '.js' --cache --fix",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srhinee/vue-cli-plugin-ruoyi.git"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"ruoyi",
"vue-cli-plugin"
],
"author": "samsara",
"license": "MIT",
"bugs": {
"url": "https://github.com/srhinee/vue-cli-plugin-ruoyi/issues"
},
"homepage": "https://github.com/srhinee/vue-cli-plugin-ruoyi#readme",
"dependencies": {
"acorn": "^8.7.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}