forked from vuejs/vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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",
"version": "1.0.8",
"author": "Evan You <[email protected]>",
"license": "MIT",
"description": "Simple, Fast & Composable MVVM for building interactive interfaces",
"keywords": [
"mvvm",
"browser",
"framework"
],
"main": "src/vue.js",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue.git"
},
"bugs": "https://github.com/vuejs/vue/issues",
"homepage": "http://vuejs.org",
"scripts": {
"test": "grunt ci",
"install-hook": "ln -s ../../build/git-hooks/pre-commit .git/hooks/pre-commit",
"dev": "webpack --watch --config build/webpack.dev.config.js & webpack --watch --config build/webpack.test.config.js"
},
"dependencies": {
"envify": "^3.4.0"
},
"browserify": {
"transform": [
"envify"
]
},
"devDependencies": {
"casperjs": "^1.1.0-beta3",
"codecov.io": "^0.1.2",
"eslint": "^1.3.1",
"grunt": "^0.4.5",
"grunt-eslint": "^17.1.0",
"grunt-karma": "^0.12.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.8",
"karma-chrome-launcher": "^0.2.0",
"karma-commonjs": "^0.0.13",
"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",
"phantomjs": "^1.9.17",
"semver": "^5.0.1",
"shell-task": "^1.0.0",
"uglify-js": "^2.4.24",
"webpack": "^1.11.0"
}
}