package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "violentmonkey",
  3. "description": "Violentmonkey",
  4. "version": "2.13.0",
  5. "scripts": {
  6. "dev": "gulp dev",
  7. "prebuild": "yarn ci",
  8. "build": "cross-env NODE_ENV=production gulp build",
  9. "build:selfHosted": "cross-env TARGET=selfHosted BETA=1 run-s build",
  10. "analyze": "cross-env RUN_ENV=analyze run-s build",
  11. "i18n": "gulp i18n",
  12. "copyI18n": "gulp copyI18n",
  13. "lint": "run-s lint:js lint:yml",
  14. "lint:js": "eslint --ext .js,.vue .",
  15. "lint:yml": "gulp check",
  16. "svgo": "plaid svgo",
  17. "test": "cross-env BABEL_ENV=test tape -r ./test/mock/register \"test/**/*.test.js\"",
  18. "ci": "run-s lint test",
  19. "transform": "locky yarn yarn",
  20. "bumpVersion": "gulp bump",
  21. "bump": "run-s ci \"bumpVersion --commit\"",
  22. "preversion": "run-s ci \"bumpVersion --reset\""
  23. },
  24. "devDependencies": {
  25. "@actions/core": "^1.2.6",
  26. "@babel/plugin-proposal-function-bind": "^7.14.5",
  27. "@babel/register": "^7.15.3",
  28. "@babel/runtime": "^7.15.3",
  29. "@gera2ld/locky": "^0.1.1",
  30. "@gera2ld/plaid": "~1.5.6",
  31. "@gera2ld/plaid-vue": "~1.5.5",
  32. "@gera2ld/plaid-webpack": "~1.5.5",
  33. "@types/chrome": "0.0.101",
  34. "@types/firefox-webext-browser": "82.0.0",
  35. "acorn": "^8.4.1",
  36. "confusing-browser-globals": "^1.0.10",
  37. "cross-env": "^7.0.2",
  38. "cross-spawn": "^7.0.1",
  39. "del": "^5.1.0",
  40. "fancy-log": "^1.3.2",
  41. "gulp": "^4.0.2",
  42. "gulp-plumber": "^1.1.0",
  43. "husky": "^4.2.3",
  44. "js-yaml": "^3.13.1",
  45. "jsdom": "^16.2.1",
  46. "npm-run-all": "^4.1.5",
  47. "plugin-error": "^1.0.0",
  48. "sharp": "^0.26.2",
  49. "sign-addon": "^3.1.0",
  50. "tape": "^4.13.2",
  51. "through2": "^3.0.1",
  52. "vinyl": "^2.1.0",
  53. "wrapper-webpack-plugin": "2.1.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. "@violentmonkey/shortcut": "^1.2.4",
  67. "@zip.js/zip.js": "^2.3.9",
  68. "codemirror": "5.63.1",
  69. "codemirror-js-mixed": "^0.9.2",
  70. "tldjs": "^2.3.1",
  71. "vue": "^2.6.11",
  72. "vueleton": "^1.0.6"
  73. },
  74. "engines": {
  75. "node": ">=10"
  76. },
  77. "husky": {
  78. "hooks": {
  79. "pre-commit": "yarn transform -t",
  80. "pre-push": "yarn lint"
  81. }
  82. },
  83. "beta": 7
  84. }