package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.dist.dev.config.js",
  14. "dev-test": "karma start build/karma.dev.config.js",
  15. "dev-ssr": "webpack --watch --config build/webpack.ssr.dev.config.js",
  16. "test": "npm run unit && npm run e2e",
  17. "build": "NODE_ENV=production node build/build.js",
  18. "lint": "eslint src build test",
  19. "unit": "karma start build/karma.unit.config.js",
  20. "cover": "karma start build/karma.cover.config.js",
  21. "e2e": "npm run build && node test/e2e/runner.js"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/vuejs/vue-lite.git"
  26. },
  27. "keywords": [
  28. "vue"
  29. ],
  30. "author": "Evan You",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/vuejs/vue-lite/issues"
  34. },
  35. "homepage": "https://github.com/vuejs/vue-lite#readme",
  36. "devDependencies": {
  37. "babel-core": "^6.0.0",
  38. "babel-loader": "^6.0.0",
  39. "babel-preset-es2015": "^6.0.0",
  40. "babel-preset-es2015-rollup-vue": "^1.0.0",
  41. "chromedriver": "^2.21.2",
  42. "cross-spawn": "^2.1.5",
  43. "entities": "^1.1.1",
  44. "eslint": "^2.7.0",
  45. "eslint-config-standard": "^5.1.0",
  46. "eslint-loader": "^1.3.0",
  47. "eslint-plugin-promise": "^1.1.0",
  48. "eslint-plugin-standard": "^1.3.2",
  49. "http-server": "^0.9.0",
  50. "isparta-loader": "^2.0.0",
  51. "jasmine-core": "^2.4.1",
  52. "karma": "^0.13.15",
  53. "karma-chrome-launcher": "^0.2.3",
  54. "karma-coverage": "^0.5.5",
  55. "karma-firefox-launcher": "^0.1.7",
  56. "karma-jasmine": "^0.3.8",
  57. "karma-phantomjs-launcher": "^1.0.0",
  58. "karma-safari-launcher": "^0.1.1",
  59. "karma-sourcemap-loader": "^0.3.7",
  60. "karma-spec-reporter": "0.0.24",
  61. "karma-webpack": "^1.7.0",
  62. "nightwatch": "^0.8.18",
  63. "phantomjs-prebuilt": "^2.1.3",
  64. "rollup": "^0.25.8",
  65. "rollup-plugin-alias": "^1.2.0",
  66. "rollup-plugin-babel": "^2.4.0",
  67. "rollup-plugin-replace": "^1.1.0",
  68. "selenium-server": "2.53.0",
  69. "uglify-js": "^2.6.2",
  70. "webpack": "^1.12.14"
  71. }
  72. }