forked from vuejs/vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.51 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
80
{
"name": "vue",
"version": "1.0.24",
"author": "Evan You <yyx990803@gmail.com>",
"license": "MIT",
"description": "Simple, Fast & Composable MVVM for building interactive interfaces",
"keywords": [
"mvvm",
"browser",
"framework"
],
"main": "dist/vue.common.js",
"files": [
"dist/vue.js",
"dist/vue.min.js",
"dist/vue.min.js.map",
"dist/vue.common.js",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue.git"
},
"bugs": "https://github.com/vuejs/vue/issues",
"homepage": "http://vuejs.org",
"scripts": {
"test": "npm run lint && npm run cover && npm run build && npm run e2e",
"build": "node build/build.js",
"install-hook": "ln -s ../../build/git-hooks/pre-commit .git/hooks/pre-commit",
"dev": "webpack --watch --config build/webpack.dev.config.js & npm run serve-test",
"serve-test": "webpack-dev-server --config build/webpack.test.config.js --host 0.0.0.0",
"build-test": "webpack --config build/webpack.test.config.js",
"lint": "eslint src/** test/e2e/** test/unit/specs/** build/**.js",
"e2e": "casperjs test --concise ./test/e2e",
"unit": "karma start build/karma.unit.config.js",
"cover": "karma start build/karma.cover.config.js",
"sauce": "karma start build/karma.sauce.config.js",
"sauce-all": "npm run sauce && npm run sauce -- 1 && npm run sauce -- 2",
"release": "bash build/release.sh",
"release-csp": "bash build/release-csp.sh"
},
"dependencies": {
"envify": "^3.4.0"
},
"browserify": {
"transform": [
"envify"
]
},
"devDependencies": {
"babel-core": "^5.8.0",
"babel-loader": "^5.4.0",
"babel-runtime": "^5.8.0",
"casperjs": "^1.1.0-beta5",
"codecov.io": "^0.1.2",
"eslint": "^2.9.0",
"eslint-config-vue": "^1.0.0",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.4.1",
"karma": "^0.13.8",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.0",
"karma-firefox-launcher": "^0.1.6",
"karma-ie-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"object-assign": "^4.0.1",
"phantomjs": "^1.9.17",
"rollup": "^0.25.1",
"rollup-plugin-babel": "^1.0.0",
"rollup-plugin-replace": "^1.1.0",
"uglify-js": "^2.4.24",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
}
}