-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "vue-smart-route",
"version": "0.3.2",
"description": "Smart Router for vue-router",
"main": "dist/vue-smart-route.js",
"files": [
"dist"
],
"scripts": {
"test": "exit 0;",
"build": "poi src/vue-smart-route.js --prod --format umd --module-name VueSmartRoute --file-names.js vue-smart-route.js",
"dev": "poi example/main.js --serve",
"gh-pages": "poi example/main.js --prod --public-url ./ --out-dir=example/dist && gh-pages -d example/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/f/vue-smart-route.git"
},
"keywords": [
"vue-router",
"search",
"smart"
],
"author": "Fatih Kadir Akin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/f/vue-smart-route/issues"
},
"homepage": "https://github.com/f/vue-smart-route#readme",
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --write",
"git add"
],
"example/**/*.js": [
"prettier --single-quote --write",
"git add"
]
},
"peerDependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"gh-pages": "^2.0.1",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"poi": "^12.0.0-beta.6",
"prettier": "^1.15.3",
"vue": "^2.5.17",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.17"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}