| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "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"
- ],
- "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 && flow check && npm run test:unit && npm run test:e2e && npm run test:ssr",
- "ci": "npm run lint && flow check && npm run test:cover && npm run test:ssr",
- "build": "NODE_ENV=production node build/build.js",
- "lint": "eslint src build test",
- "flow": "flow check",
- "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.js,server-renderer.js && NODE_ENV=development VUE_ENV=server 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.8.x",
- "babel-eslint": "6.0.x",
- "babel-loader": "6.2.x",
- "babel-preset-es2015": "6.6.x",
- "babel-preset-es2015-rollup-vue": "1.1.x",
- "babel-preset-flow-vue": "1.0.x",
- "chromedriver": "2.21.x",
- "codecov.io": "0.1.x",
- "cross-spawn": "2.2.x",
- "entities": "1.1.x",
- "eslint": "2.9.x",
- "eslint-config-vue": "1.0.x",
- "eslint-plugin-flow-vars": "0.4.x",
- "flow-bin": "0.24.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"
- }
- }
|