-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.13 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
{
"name": "vue-auto-routes",
"description": "🚦Future-Oriented vue routing system",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "evillt/vue-auto-routes"
},
"author": "evillt <ijoec123@gmail.com> (https://evila.me)",
"main": "index.js",
"files": [
"lib",
"plugin.js",
"404.vue",
"index.js"
],
"scripts": {
"lint": "xo",
"test": "npm run lint && ava --verbose"
},
"dependencies": {
"lodash.sortby": "^4.7.0"
},
"devDependencies": {
"ava": "^2.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"prettier": "^1.17.0",
"vue-router": "^4.0.0-rc.6",
"xo": "^0.23.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}
}