package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "vuex",
  3. "version": "3.1.0",
  4. "description": "state management for Vue.js",
  5. "main": "dist/vuex.common.js",
  6. "module": "dist/vuex.esm.js",
  7. "unpkg": "dist/vuex.js",
  8. "typings": "types/index.d.ts",
  9. "files": [
  10. "dist",
  11. "types/index.d.ts",
  12. "types/helpers.d.ts",
  13. "types/vue.d.ts"
  14. ],
  15. "scripts": {
  16. "dev": "node examples/server.js",
  17. "dev:dist": "rollup -wm -c build/rollup.dev.config.js",
  18. "build": "npm run build:main && npm run build:logger",
  19. "build:main": "node build/build.main.js",
  20. "build:logger": "rollup -c build/rollup.logger.config.js",
  21. "lint": "eslint src test",
  22. "test": "npm run lint && npm run test:types && npm run test:unit && npm run test:ssr && npm run test:e2e",
  23. "test:unit": "rollup -c build/rollup.dev.config.js && jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
  24. "test:e2e": "node test/e2e/runner.js",
  25. "test:ssr": "rollup -c build/rollup.dev.config.js && cross-env VUE_ENV=server jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
  26. "test:types": "tsc -p types/test",
  27. "release": "bash build/release.sh",
  28. "docs": "vuepress dev docs",
  29. "docs:build": "vuepress build docs"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git+https://github.com/vuejs/vuex.git"
  34. },
  35. "author": "Evan You",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/vuejs/vuex/issues"
  39. },
  40. "homepage": "https://github.com/vuejs/vuex#readme",
  41. "devDependencies": {
  42. "babel-core": "^6.22.1",
  43. "babel-loader": "^7.1.2",
  44. "babel-plugin-transform-object-rest-spread": "^6.23.0",
  45. "babel-polyfill": "^6.22.0",
  46. "babel-preset-env": "^1.5.1",
  47. "chromedriver": "^2.45.0",
  48. "cross-env": "^5.2.0",
  49. "cross-spawn": "^6.0.5",
  50. "css-loader": "^2.1.0",
  51. "eslint": "^5.12.0",
  52. "eslint-plugin-vue-libs": "^3.0.0",
  53. "express": "^4.14.1",
  54. "jasmine": "2.8.0",
  55. "jasmine-core": "2.8.0",
  56. "nightwatch": "^0.9.12",
  57. "nightwatch-helpers": "^1.2.0",
  58. "phantomjs-prebuilt": "^2.1.14",
  59. "rollup": "^1.1.0",
  60. "rollup-plugin-buble": "^0.19.6",
  61. "rollup-plugin-replace": "^2.1.0",
  62. "selenium-server": "^2.53.1",
  63. "todomvc-app-css": "^2.1.0",
  64. "typescript": "^3.2.2",
  65. "uglify-js": "^3.1.2",
  66. "vue": "^2.5.22",
  67. "vue-loader": "^15.2.1",
  68. "vue-template-compiler": "^2.5.22",
  69. "vuepress": "^0.14.1",
  70. "vuepress-theme-vue": "^1.1.0",
  71. "webpack": "^4.8.3",
  72. "webpack-dev-middleware": "^1.10.0",
  73. "webpack-hot-middleware": "^2.19.1"
  74. }
  75. }