You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.4 KiB

9 years ago
{
9 years ago
"name": "vue",
"version": "2.0.0-pre-alpha",
"description": "Reactive, component-oriented view layer for modern web interfaces.",
"main": "dist/vue.common.js",
"files": [
"dist/vue.common.js",
"dist/vue.js",
"dist/vue.min.js",
"dist/compiler.js",
"dist/server-renderer.js",
"src"
],
9 years ago
"scripts": {
9 years ago
"dev": "webpack --watch --config build/webpack.dist.dev.config.js",
"dev:test": "karma start build/karma.dev.config.js",
"dev:ssr": "webpack --watch --config build/webpack.ssr.dev.config.js",
"test": "npm run lint && npm run test:unit && npm run test:e2e && npm run test:ssr",
9 years ago
"build": "NODE_ENV=production node build/build.js",
9 years ago
"lint": "eslint src build test",
"test:unit": "NODE_ENV=development karma start build/karma.unit.config.js",
"test:cover": "NODE_ENV=development karma start build/karma.cover.config.js",
"test:e2e": "npm run build -- vue.js && node test/e2e/runner.js",
"test:ssr": "npm run build -- vue.common.js,compiler.common.js,server-renderer.js && NODE_ENV=development jasmine JASMINE_CONFIG_PATH=test/ssr/jasmine.json"
9 years ago
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue.git"
9 years ago
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue/issues"
9 years ago
},
"homepage": "https://github.com/vuejs/vue#readme",
9 years ago
"devDependencies": {
"babel-core": "6.8.x",
"babel-loader": "6.2.x",
"babel-preset-es2015": "6.6.x",
"babel-preset-es2015-rollup-vue": "1.0.x",
"chromedriver": "2.21.x",
"cross-spawn": "2.2.x",
"entities": "1.1.x",
"eslint": "2.9.x",
"eslint-config-vue": "1.0.x",
"eslint-loader": "1.3.x",
"http-server": "0.9.x",
"isparta-loader": "2.0.x",
"jasmine": "2.4.x",
"jasmine-core": "2.4.x",
"karma": "0.13.x",
"karma-chrome-launcher": "0.2.x",
"karma-coverage": "0.5.x",
"karma-firefox-launcher": "0.1.x",
"karma-jasmine": "0.3.x",
"karma-phantomjs-launcher": "1.0.x",
"karma-safari-launcher": "0.1.x",
"karma-sourcemap-loader": "0.3.x",
"karma-spec-reporter": "0.0.x",
"karma-webpack": "1.7.x",
"nightwatch": "0.8.x",
"phantomjs-prebuilt": "2.1.x",
"rollup": "0.26.x",
"rollup-plugin-alias": "1.2.x",
"rollup-plugin-babel": "2.4.x",
"rollup-plugin-replace": "1.1.x",
"selenium-server": "2.53.x",
"uglify-js": "2.6.x",
"webpack": "1.13.x"
9 years ago
}
}