package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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-test": "karma start build/karma.dev.config.js",
  15. "dev-all": "npm run dev-dist & npm run dev-test",
  16. "test": "npm run unit && npm run e2e",
  17. "build": "NODE_ENV=production node build/build.js",
  18. "lint": "eslint src build",
  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. "eslint": "^2.7.0",
  44. "eslint-config-standard": "^5.1.0",
  45. "eslint-loader": "^1.3.0",
  46. "eslint-plugin-promise": "^1.1.0",
  47. "eslint-plugin-standard": "^1.3.2",
  48. "http-server": "^0.9.0",
  49. "isparta-loader": "^2.0.0",
  50. "jasmine-core": "^2.4.1",
  51. "karma": "^0.13.15",
  52. "karma-chrome-launcher": "^0.2.3",
  53. "karma-coverage": "^0.5.5",
  54. "karma-firefox-launcher": "^0.1.7",
  55. "karma-jasmine": "^0.3.8",
  56. "karma-phantomjs-launcher": "^1.0.0",
  57. "karma-safari-launcher": "^0.1.1",
  58. "karma-sourcemap-loader": "^0.3.7",
  59. "karma-spec-reporter": "0.0.24",
  60. "karma-webpack": "^1.7.0",
  61. "nightwatch": "^0.8.18",
  62. "phantomjs-prebuilt": "^2.1.3",
  63. "rollup": "^0.25.8",
  64. "rollup-plugin-alias": "^1.2.0",
  65. "rollup-plugin-babel": "^2.4.0",
  66. "rollup-plugin-replace": "^1.1.0",
  67. "selenium-server": "2.53.0",
  68. "uglify-js": "^2.6.2",
  69. "webpack": "^1.12.14"
  70. }
  71. }