UNPKG

2.49 kBJSONView Raw
1{
2 "name": "vue-router",
3 "version": "2.5.2",
4 "description": "Official router for Vue.js 2",
5 "author": "Evan You",
6 "license": "MIT",
7 "main": "dist/vue-router.common.js",
8 "module": "dist/vue-router.esm.js",
9 "unpkg": "dist/vue-router.js",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/vuejs/vue-router.git"
13 },
14 "typings": "types/index.d.ts",
15 "files": [
16 "src",
17 "dist/*.js",
18 "types/*.d.ts"
19 ],
20 "keywords": [
21 "vue",
22 "router",
23 "routing"
24 ],
25 "scripts": {
26 "dev": "node examples/server.js",
27 "dev:dist": "rollup -wm -c build/dev.config.js",
28 "build": "node build/build.js",
29 "lint": "eslint src examples",
30 "test": "npm run lint && flow check && npm run test:unit && npm run test:e2e && npm run test:types",
31 "test:unit": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
32 "test:e2e": "node test/e2e/runner.js",
33 "test:types": "tsc -p types/test",
34 "docs": "cd docs && gitbook install && gitbook serve",
35 "docs:deploy": "bash ./build/update-docs.sh",
36 "release": "bash build/release.sh"
37 },
38 "devDependencies": {
39 "babel-core": "^6.11.4",
40 "babel-eslint": "^7.1.1",
41 "babel-loader": "^6.2.4",
42 "babel-plugin-syntax-dynamic-import": "^6.18.0",
43 "babel-preset-es2015": "^6.9.0",
44 "babel-preset-es2015-loose": "^8.0.0",
45 "babel-preset-flow-vue": "^1.0.0",
46 "buble": "^0.15.2",
47 "chromedriver": "^2.21.2",
48 "cross-spawn": "^5.0.1",
49 "css-loader": "^0.26.1",
50 "es6-promise": "^4.0.5",
51 "eslint": "^3.0.1",
52 "eslint-config-vue": "^2.0.1",
53 "eslint-plugin-flow-vars": "^0.5.0",
54 "eslint-plugin-vue": "^2.0.1",
55 "express": "^4.14.0",
56 "express-urlrewrite": "^1.2.0",
57 "flow-bin": "^0.40.0",
58 "gitbook-plugin-edit-link": "^2.0.2",
59 "gitbook-plugin-github": "^3.0.0",
60 "jasmine": "2.5.3",
61 "nightwatch": "^0.9.5",
62 "nightwatch-helpers": "^1.0.0",
63 "path-to-regexp": "^1.5.3",
64 "phantomjs-prebuilt": "^2.1.7",
65 "rollup": "^0.41.4",
66 "rollup-plugin-buble": "^0.15.0",
67 "rollup-plugin-commonjs": "^7.0.0",
68 "rollup-plugin-flow-no-whitespace": "^1.0.0",
69 "rollup-plugin-node-resolve": "^2.0.0",
70 "rollup-plugin-replace": "^1.1.1",
71 "rollup-watch": "^3.2.2",
72 "selenium-server": "^2.53.1",
73 "typescript": "^2.0.3",
74 "uglify-js": "^2.7.0",
75 "vue": "^2.1.0",
76 "vue-loader": "^11.0.0",
77 "vue-template-compiler": "^2.1.0",
78 "webpack": "^2.2.0",
79 "webpack-dev-middleware": "^1.9.0"
80 }
81}