package.json 2.5 KB

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