| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "name": "vue",
- "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"
- ],
- "scripts": {
- "dev": "webpack --watch --config build/webpack.dev.config.js",
- "dev-with-test": "npm run dev & karma start build/karma.dev.config.js",
- "test": "npm run unit && npm run e2e",
- "build": "NODE_ENV=production node build/build.js",
- "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"
- },
- "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",
- "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-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.0.2",
- "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"
- }
- }
|