package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.5.9",
  4. "scripts": {
  5. "dev": "gulp watch",
  6. "build": "gulp build",
  7. "analyze": "webpack --profile --json --config scripts/webpack.conf.js | webpack-bundle-size-analyzer",
  8. "analyze:json": "webpack --profile --json --config scripts/webpack.conf.js > stats.json",
  9. "i18n": "gulp i18n",
  10. "lint": "eslint src",
  11. "update": "node scripts/update",
  12. "svgo": "svgo icons",
  13. "test": "mocha"
  14. },
  15. "description": "Violentmonkey",
  16. "devDependencies": {
  17. "babel-core": "^6.24.0",
  18. "babel-eslint": "^7.2.1",
  19. "babel-loader": "^6.4.1",
  20. "babel-plugin-transform-runtime": "^6.23.0",
  21. "babel-preset-es2015": "^6.24.0",
  22. "core-js": "^2.4.1",
  23. "css-loader": "^0.27.3",
  24. "cssnano": "^3.10.0",
  25. "del": "^2.2.0",
  26. "eslint": "^3.18.0",
  27. "eslint-config-airbnb-base": "^11.1.2",
  28. "eslint-friendly-formatter": "^2.0.7",
  29. "eslint-import-resolver-webpack": "^0.8.1",
  30. "eslint-loader": "^1.7.0",
  31. "eslint-plugin-html": "^2.0.1",
  32. "eslint-plugin-import": "^2.2.0",
  33. "extract-text-webpack-plugin": "^2.1.0",
  34. "friendly-errors-webpack-plugin": "^1.6.1",
  35. "glob": "^7.0.3",
  36. "gulp": "^3.9.1",
  37. "gulp-concat": "^2.6.0",
  38. "gulp-eslint": "^3.0.1",
  39. "gulp-filter": "^5.0.0",
  40. "gulp-postcss": "^6.3.0",
  41. "gulp-svg-sprite": "^1.2.19",
  42. "gulp-uglify": "^2.0.0",
  43. "gulp-util": "^3.0.7",
  44. "html-minifier": "^3.2.3",
  45. "html-webpack-plugin": "^2.28.0",
  46. "js-yaml": "^3.5.5",
  47. "merge2": "^1.0.2",
  48. "mocha": "^3.1.2",
  49. "ncp": "^2.0.0",
  50. "precss": "^1.4.0",
  51. "svgo": "^0.7.2",
  52. "through2": "^2.0.3",
  53. "vue-loader": "^11.3.3",
  54. "vue-style-loader": "^2.0.4",
  55. "vue-template-compiler": "^2.2.5",
  56. "webpack": "^2.3.2",
  57. "webpack-bundle-size-analyzer": "^2.5.0"
  58. },
  59. "author": "Gerald <[email protected]>",
  60. "repository": {
  61. "type": "git",
  62. "url": "https://github.com/violentmonkey/violentmonkey.git"
  63. },
  64. "bugs": {
  65. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  66. },
  67. "homepage": "https://github.com/violentmonkey/violentmonkey",
  68. "license": "MIT",
  69. "dependencies": {
  70. "codemirror": "^5.25.0",
  71. "define-commonjs": "^1.1.2",
  72. "sync-promise-lite": "^0.2.3",
  73. "vue": "^2.2.5"
  74. }
  75. }