package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "vue",
  3. "version": "2.0.0-pre-alpha",
  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. "dist/compiler.js",
  11. "dist/server-renderer.js",
  12. "src"
  13. ],
  14. "scripts": {
  15. "dev": "webpack --watch --config build/webpack.dist.dev.config.js",
  16. "dev:test": "karma start build/karma.dev.config.js",
  17. "dev:ssr": "webpack --watch --config build/webpack.ssr.dev.config.js",
  18. "test": "npm run lint && flow check && npm run test:unit && npm run test:e2e && npm run test:ssr",
  19. "ci": "npm run lint && flow check && npm run test:cover && npm run test:ssr",
  20. "build": "NODE_ENV=production node build/build.js",
  21. "lint": "eslint src build test",
  22. "flow": "flow check",
  23. "test:unit": "NODE_ENV=development karma start build/karma.unit.config.js",
  24. "test:cover": "NODE_ENV=development karma start build/karma.cover.config.js",
  25. "test:e2e": "npm run build -- vue.js && node test/e2e/runner.js",
  26. "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"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/vuejs/vue.git"
  31. },
  32. "keywords": [
  33. "vue"
  34. ],
  35. "author": "Evan You",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/vuejs/vue/issues"
  39. },
  40. "homepage": "https://github.com/vuejs/vue#readme",
  41. "devDependencies": {
  42. "babel-core": "6.8.x",
  43. "babel-eslint": "6.0.x",
  44. "babel-loader": "6.2.x",
  45. "babel-preset-es2015": "6.6.x",
  46. "babel-preset-es2015-rollup-vue": "1.1.x",
  47. "babel-preset-flow-vue": "1.0.x",
  48. "chromedriver": "2.21.x",
  49. "codecov.io": "0.1.x",
  50. "cross-spawn": "2.2.x",
  51. "entities": "1.1.x",
  52. "eslint": "2.9.x",
  53. "eslint-config-vue": "1.0.x",
  54. "eslint-plugin-flow-vars": "0.4.x",
  55. "flow-bin": "0.24.x",
  56. "http-server": "0.9.x",
  57. "isparta-loader": "2.0.x",
  58. "jasmine": "2.4.x",
  59. "jasmine-core": "2.4.x",
  60. "karma": "0.13.x",
  61. "karma-chrome-launcher": "0.2.x",
  62. "karma-coverage": "0.5.x",
  63. "karma-firefox-launcher": "0.1.x",
  64. "karma-jasmine": "0.3.x",
  65. "karma-phantomjs-launcher": "1.0.x",
  66. "karma-safari-launcher": "0.1.x",
  67. "karma-sourcemap-loader": "0.3.x",
  68. "karma-spec-reporter": "0.0.x",
  69. "karma-webpack": "1.7.x",
  70. "nightwatch": "0.8.x",
  71. "phantomjs-prebuilt": "2.1.x",
  72. "rollup": "0.26.x",
  73. "rollup-plugin-alias": "1.2.x",
  74. "rollup-plugin-babel": "2.4.x",
  75. "rollup-plugin-replace": "1.1.x",
  76. "selenium-server": "2.53.x",
  77. "uglify-js": "2.6.x",
  78. "webpack": "1.13.x"
  79. }
  80. }