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.

72 lines
2.1 KiB

9 years ago
{
9 years ago
"name": "vue",
9 years ago
"version": "2.0.0",
"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"
],
9 years ago
"scripts": {
9 years ago
"dev": "webpack --watch --config build/webpack.dev.config.js",
"dev-test": "karma start build/karma.dev.config.js",
"dev-all": "npm run dev-dist & npm run dev-test",
9 years ago
"test": "npm run unit && npm run e2e",
9 years ago
"build": "NODE_ENV=production node build/build.js",
9 years ago
"lint": "eslint src build",
"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"
9 years ago
},
"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",
"babel-preset-es2015-rollup-vue": "^1.0.0",
"chromedriver": "^2.21.2",
"cross-spawn": "^2.1.5",
9 years ago
"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",
9 years ago
"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",
"nightwatch": "^0.8.18",
9 years ago
"phantomjs-prebuilt": "^2.1.3",
9 years ago
"rollup": "^0.25.8",
"rollup-plugin-alias": "^1.2.0",
9 years ago
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-replace": "^1.1.0",
"selenium-server": "2.53.0",
9 years ago
"uglify-js": "^2.6.2",
"webpack": "^1.12.14"
}
}