package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.6.2",
  4. "scripts": {
  5. "dev": "gulp watch",
  6. "prebuild": "gulp clean",
  7. "build": "gulp build",
  8. "analyze": "webpack --profile --json --config scripts/webpack.conf.js | webpack-bundle-size-analyzer",
  9. "analyze:json": "webpack --profile --json --config scripts/webpack.conf.js > stats.json",
  10. "i18n": "gulp i18n",
  11. "lint": "eslint --ext .js,.vue .",
  12. "svgo": "svgo icons",
  13. "pretest": "webpack --config scripts/webpack.test.conf.js",
  14. "test": "node dist/test",
  15. "prepush": "npm run lint"
  16. },
  17. "description": "Violentmonkey",
  18. "devDependencies": {
  19. "babel-core": "^6.24.1",
  20. "babel-eslint": "^7.2.2",
  21. "babel-loader": "^7.0.0",
  22. "babel-plugin-transform-runtime": "^6.23.0",
  23. "babel-preset-es2015": "^6.24.1",
  24. "css-loader": "^0.28.0",
  25. "del": "^2.2.0",
  26. "es6-promisify": "^5.0.0",
  27. "eslint": "^3.19.0",
  28. "eslint-config-airbnb-base": "^11.1.3",
  29. "eslint-friendly-formatter": "^2.0.7",
  30. "eslint-import-resolver-webpack": "^0.8.1",
  31. "eslint-loader": "^1.7.1",
  32. "eslint-plugin-html": "^2.0.1",
  33. "eslint-plugin-import": "^2.2.0",
  34. "extract-text-webpack-plugin": "^2.1.0",
  35. "friendly-errors-webpack-plugin": "^1.6.1",
  36. "gulp": "^3.9.1",
  37. "gulp-filter": "^5.0.0",
  38. "gulp-svg-sprite": "^1.2.19",
  39. "gulp-uglify": "^2.0.0",
  40. "gulp-util": "^3.0.7",
  41. "html-webpack-plugin": "^2.28.0",
  42. "husky": "^0.13.3",
  43. "js-yaml": "^3.8.3",
  44. "localStorage": "^1.0.3",
  45. "precss": "^1.4.0",
  46. "svgo": "^0.7.2",
  47. "tape": "^4.6.3",
  48. "through2": "^2.0.3",
  49. "vue-loader": "^12.0.2",
  50. "vue-style-loader": "^3.0.1",
  51. "vue-template-compiler": "^2.3.0",
  52. "webpack": "^2.4.1",
  53. "webpack-bundle-size-analyzer": "^2.6.0"
  54. },
  55. "author": "Gerald <[email protected]>",
  56. "repository": {
  57. "type": "git",
  58. "url": "https://github.com/violentmonkey/violentmonkey.git"
  59. },
  60. "bugs": {
  61. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  62. },
  63. "homepage": "https://github.com/violentmonkey/violentmonkey",
  64. "license": "MIT",
  65. "dependencies": {
  66. "codemirror": "^5.25.2",
  67. "core-js": "^2.4.1",
  68. "sync-promise-lite": "^0.2.3",
  69. "vue": "^2.3.0",
  70. "vue-code": "^1.2.1"
  71. }
  72. }