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.
 
 
 
 
 

74 lines
2.5 KiB

{
"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",
"src"
],
"scripts": {
"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",
"build": "NODE_ENV=production node build/build.js",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue/issues"
},
"homepage": "https://github.com/vuejs/vue#readme",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-es2015-rollup-vue": "^1.0.0",
"chromedriver": "^2.21.2",
"cross-spawn": "^2.1.5",
"entities": "^1.1.1",
"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",
"http-server": "^0.9.0",
"isparta-loader": "^2.0.0",
"jasmine": "^2.4.1",
"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",
"nightwatch": "^0.8.18",
"phantomjs-prebuilt": "^2.1.3",
"rollup": "^0.25.8",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-replace": "^1.1.0",
"selenium-server": "2.53.0",
"uglify-js": "^2.6.2",
"webpack": "^1.12.14"
}
}