-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "vue-pilot",
"version": "0.17.12",
"description": "A Trie-based vue router with the ability of managing history.state",
"main": "dist/vue-pilot",
"scripts": {
"build": "rollup -c rollup.config.esm.js && rollup -c rollup.config.cjs.js && rollup -c rollup.config.esm.bundle.js",
"example": "ws --spa example.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiangfengming/vue-pilot.git"
},
"keywords": [
"vue",
"router"
],
"author": "Jiang Fengming <jiangfengming87@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jiangfengming/vue-pilot#readme",
"bugs": {
"url": "https://github.com/jiangfengming/vue-pilot/issues"
},
"dependencies": {
"cast-string": "^0.3.0",
"spa-history": "^0.12.12",
"url-router": "^11.0.3"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"eslint": "^7.7.0",
"eslint-config-enough": "^0.4.3",
"local-web-server": "^4.2.1",
"rollup": "^2.26.6"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"loose": true,
"modules": false
}
]
]
},
"eslintConfig": {
"extends": "enough",
"env": {
"browser": true
}
}
}