vue/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2014-07-09 01:45:53 +08:00
{
"name": "vue",
2015-10-16 05:14:04 +08:00
"version": "1.0.0-rc.1",
2014-07-09 01:45:53 +08:00
"author": "Evan You <yyx990803@gmail.com>",
"license": "MIT",
"description": "Simple, Fast & Composable MVVM for building interative interfaces",
"keywords": [
"mvvm",
"browser",
"framework"
],
"main": "src/vue.js",
"repository": {
"type": "git",
2015-10-18 12:13:32 +08:00
"url": "https://github.com/vuejs/vue.git"
2014-07-09 01:45:53 +08:00
},
2015-10-18 12:13:32 +08:00
"bugs": "https://github.com/vuejs/vue/issues",
2014-07-09 01:45:53 +08:00
"homepage": "http://vuejs.org",
"scripts": {
2015-05-11 01:19:55 +08:00
"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"
]
2014-07-09 01:45:53 +08:00
},
"devDependencies": {
"casperjs": "^1.1.0-beta3",
2015-06-15 02:41:28 +08:00
"codecov.io": "^0.1.2",
2015-09-03 19:04:51 +08:00
"eslint": "^1.3.1",
2014-07-09 01:45:53 +08:00
"grunt": "^0.4.5",
2015-08-10 05:38:02 +08:00
"grunt-eslint": "^17.1.0",
"grunt-karma": "^0.12.0",
2015-06-20 10:13:53 +08:00
"jasmine-core": "^2.3.4",
2015-08-10 05:38:02 +08:00
"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-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
2015-08-10 05:38:02 +08:00
"karma-sauce-launcher": "^0.2.14",
"phantomjs": "^1.9.17",
"semver": "^5.0.1",
2014-10-08 04:33:45 +08:00
"shell-task": "^1.0.0",
2015-08-10 05:38:02 +08:00
"uglify-js": "^2.4.24",
"webpack": "^1.11.0"
2014-07-09 01:45:53 +08:00
}
}