vue/package.json

73 lines
2.2 KiB
JSON
Raw Normal View History

2016-04-11 10:47:28 +08:00
{
2016-04-16 03:21:25 +08:00
"name": "vue",
2016-04-11 10:48:17 +08:00
"version": "2.0.0",
2016-04-21 10:34:23 +08:00
"description": "Reactive, component-oriented view layer for modern web interfaces.",
2016-04-13 18:45:34 +08:00
"main": "dist/vue.common.js",
"files": [
"dist/vue.common.js",
"dist/vue.js",
"dist/vue.min.js",
"src"
],
2016-04-11 10:47:28 +08:00
"scripts": {
2016-04-25 07:24:17 +08:00
"dev": "webpack --watch --config build/webpack.dist.dev.config.js",
2016-04-24 10:47:54 +08:00
"dev-test": "karma start build/karma.dev.config.js",
2016-04-25 07:24:17 +08:00
"dev-ssr": "webpack --watch --config build/webpack.ssr.dev.config.js",
2016-04-26 01:17:59 +08:00
"test": "npm run lint && npm run unit && npm run e2e",
2016-04-13 06:30:40 +08:00
"build": "NODE_ENV=production node build/build.js",
2016-04-26 00:58:37 +08:00
"lint": "eslint src build test",
2016-04-24 08:00:38 +08:00
"unit": "karma start build/karma.unit.config.js",
"cover": "karma start build/karma.cover.config.js",
"e2e": "npm run build && node test/e2e/runner.js"
2016-04-11 10:47:28 +08:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-lite.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-lite/issues"
},
"homepage": "https://github.com/vuejs/vue-lite#readme",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
2016-04-19 10:36:19 +08:00
"babel-preset-es2015-rollup-vue": "^1.0.0",
2016-04-22 04:20:29 +08:00
"chromedriver": "^2.21.2",
"cross-spawn": "^2.1.5",
2016-04-25 07:24:17 +08:00
"entities": "^1.1.1",
2016-04-13 06:30:40 +08:00
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
2016-04-22 04:20:29 +08:00
"http-server": "^0.9.0",
2016-04-24 08:00:38 +08:00
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
2016-04-22 04:20:29 +08:00
"nightwatch": "^0.8.18",
2016-04-24 08:00:38 +08:00
"phantomjs-prebuilt": "^2.1.3",
2016-04-11 10:47:28 +08:00
"rollup": "^0.25.8",
"rollup-plugin-alias": "^1.2.0",
2016-04-11 10:47:28 +08:00
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-replace": "^1.1.0",
2016-04-22 04:20:29 +08:00
"selenium-server": "2.53.0",
2016-04-11 10:47:28 +08:00
"uglify-js": "^2.6.2",
"webpack": "^1.12.14"
}
}