forked from vuejs/vue-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.47 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
78
79
{
"name": "vue-router",
"version": "0.7.13",
"description": "A router for Vue.js",
"main": "dist/vue-router.js",
"jsnext:main": "src/index.js",
"files": [
"dist",
"src",
"lib"
],
"scripts": {
"dev": "npm run serve-test & webpack --watch --config build/webpack.dev.config.js",
"lint": "eslint src build test/e2e test/unit/specs",
"unit": "./node_modules/karma/bin/karma start build/karma.config.js",
"build": "node build/build.js",
"serve-example": "webpack-dev-server --inline --hot --config example/advanced/webpack.config.js --content-base example/advanced --history-api-fallback --host 0.0.0.0",
"serve-test": "webpack-dev-server --quiet --config test/unit/webpack.config.js --content-base test/unit --history-api-fallback --host 0.0.0.0 --port 8081",
"e2e-sauce": "nightwatch -c build/nightwatch.sauce.json -e chrome,firefox,ie10,ie11",
"e2e-local": "bash ./build/e2e.sh",
"release": "bash ./build/release.sh",
"docs": "cd docs && gitbook serve",
"deploy-docs": "bash ./build/update-docs.sh",
"test": "npm run lint && npm run unit && npm run e2e-local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-router.git"
},
"keywords": [
"vue",
"vuejs",
"router",
"mvvm"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-router/issues"
},
"homepage": "https://github.com/vuejs/vue-router#readme",
"devDependencies": {
"babel-core": "^5.8.33",
"babel-loader": "^5.3.3",
"babel-runtime": "^5.8.29",
"chromedriver": "2.20.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.0.2",
"eslint": "^1.3.1",
"express": "^4.12.3",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.3.2",
"karma": "^0.13.8",
"karma-coverage": "^0.5.0",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"nightwatch": "^0.8.15",
"phantomjs": "^1.9.19",
"rollup": "^0.21.0",
"rollup-plugin-babel": "^1.0.0",
"selenium-server": "2.49.1",
"style-loader": "^0.13.0",
"uglify-js": "^2.5.0",
"vue": "^1.0.14",
"vue-hot-reload-api": "^1.2.1",
"vue-html-loader": "^1.0.0",
"vue-loader": "^6.0.3",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
},
"jspm": {
"main": "src/index.js",
"registry": "npm",
"format": "esm"
}
}