forked from vuejs/vue-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.3 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
{
"name": "vue-router",
"version": "2.1.1",
"description": "Official router for Vue.js 2",
"author": "Evan You",
"license": "MIT",
"main": "dist/vue-router.common.js",
"typings": "types/index.d.ts",
"files": [
"dist/vue-router.js",
"dist/vue-router.min.js",
"dist/vue-router.common.js",
"src",
"types/index.d.ts",
"types/router.d.ts",
"types/vue.d.ts"
],
"keywords": [
"vue",
"router",
"routing"
],
"scripts": {
"dev": "node examples/server.js",
"dev:dist": "rollup -wm -c build/dev.config.js",
"build": "node build/build.js",
"lint": "eslint src examples",
"test": "npm run lint && flow check && npm run test:unit && npm run test:e2e && npm run test:types",
"test:unit": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"test:e2e": "node test/e2e/runner.js",
"test:types": "tsc -p types/test",
"docs": "cd docs && gitbook serve",
"docs:deploy": "bash ./build/update-docs.sh",
"release": "bash build/release.sh"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-flow-vue": "^1.0.0",
"buble": "^0.14.0",
"chromedriver": "^2.21.2",
"cross-spawn": "^4.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.0.1",
"eslint-config-vue": "^1.1.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-html": "^1.5.2",
"express": "^4.14.0",
"express-urlrewrite": "^1.2.0",
"flow-bin": "^0.33.0",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"jasmine": "2.4.1",
"nightwatch": "^0.9.5",
"nightwatch-helpers": "^1.0.0",
"path-to-regexp": "^1.5.3",
"phantomjs-prebuilt": "^2.1.7",
"rollup": "^0.34.13",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^5.0.4",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^2.4.0",
"selenium-server": "^2.53.1",
"typescript": "^2.0.3",
"uglify-js": "^2.7.0",
"vue": "^2.1.0",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.0",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1"
}
}