package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "vue",
  3. "version": "2.0.0",
  4. "description": "Reactive, component-oriented view layer for modern web interfaces.",
  5. "main": "dist/vue.common.js",
  6. "files": [
  7. "dist/vue.common.js",
  8. "dist/vue.js",
  9. "dist/vue.min.js",
  10. "src"
  11. ],
  12. "scripts": {
  13. "dev": "webpack --watch --config build/webpack.dev.config.js",
  14. "dev-with-test": "npm run dev & karma start build/karma.dev.config.js",
  15. "test": "npm run unit && npm run e2e",
  16. "build": "NODE_ENV=production node build/build.js",
  17. "lint": "eslint src build",
  18. "unit": "karma start build/karma.unit.config.js",
  19. "cover": "karma start build/karma.cover.config.js",
  20. "e2e": "npm run build && node test/e2e/runner.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/vuejs/vue-lite.git"
  25. },
  26. "keywords": [
  27. "vue"
  28. ],
  29. "author": "Evan You",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/vuejs/vue-lite/issues"
  33. },
  34. "homepage": "https://github.com/vuejs/vue-lite#readme",
  35. "devDependencies": {
  36. "babel-core": "^6.0.0",
  37. "babel-loader": "^6.0.0",
  38. "babel-preset-es2015": "^6.0.0",
  39. "babel-preset-es2015-rollup-vue": "^1.0.0",
  40. "chromedriver": "^2.21.2",
  41. "cross-spawn": "^2.1.5",
  42. "eslint": "^2.7.0",
  43. "eslint-config-standard": "^5.1.0",
  44. "eslint-loader": "^1.3.0",
  45. "eslint-plugin-promise": "^1.1.0",
  46. "eslint-plugin-standard": "^1.3.2",
  47. "http-server": "^0.9.0",
  48. "isparta-loader": "^2.0.0",
  49. "jasmine-core": "^2.4.1",
  50. "karma": "^0.13.15",
  51. "karma-chrome-launcher": "^0.2.3",
  52. "karma-coverage": "^0.5.5",
  53. "karma-firefox-launcher": "^0.1.7",
  54. "karma-jasmine": "^0.3.8",
  55. "karma-phantomjs-launcher": "^1.0.0",
  56. "karma-safari-launcher": "^0.1.1",
  57. "karma-sourcemap-loader": "^0.3.7",
  58. "karma-spec-reporter": "0.0.24",
  59. "karma-webpack": "^1.7.0",
  60. "nightwatch": "^0.8.18",
  61. "phantomjs-prebuilt": "^2.1.3",
  62. "rollup": "^0.25.8",
  63. "rollup-plugin-alias": "^1.0.2",
  64. "rollup-plugin-babel": "^2.4.0",
  65. "rollup-plugin-replace": "^1.1.0",
  66. "selenium-server": "2.53.0",
  67. "uglify-js": "^2.6.2",
  68. "webpack": "^1.12.14"
  69. }
  70. }