package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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\" | tap-summary",
  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. "@actions/github": "^5.0.3",
  27. "@babel/helper-plugin-utils": "^7.8.3",
  28. "@babel/plugin-syntax-function-bind": "^7.14.5",
  29. "@babel/register": "^7.15.3",
  30. "@babel/runtime": "^7.15.3",
  31. "@gera2ld/locky": "^0.1.1",
  32. "@gera2ld/plaid": "~1.5.6",
  33. "@gera2ld/plaid-vue": "~1.5.5",
  34. "@gera2ld/plaid-webpack": "~1.5.5",
  35. "@types/chrome": "^0",
  36. "@types/firefox-webext-browser": "82.0.0",
  37. "amo-upload": "^0.1.2",
  38. "cross-env": "^7.0.2",
  39. "cross-spawn": "^7.0.1",
  40. "del": "^5.1.0",
  41. "fancy-log": "^1.3.2",
  42. "gulp": "^4.0.2",
  43. "gulp-plumber": "^1.1.0",
  44. "husky": "^4.2.3",
  45. "js-yaml": "^4.1.0",
  46. "jsdom": "^16.2.1",
  47. "node-fetch": "^3.2.6",
  48. "npm-run-all": "^4.1.5",
  49. "plugin-error": "^1.0.0",
  50. "sharp": "^0.26.2",
  51. "tap-summary": "^4.0.0",
  52. "tape": "^4.13.2",
  53. "terser": "^5",
  54. "terser-webpack-plugin": "^4",
  55. "through2": "^3.0.1",
  56. "vinyl": "^2.1.0",
  57. "wrapper-webpack-plugin": "2.1.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. "@violentmonkey/shortcut": "^1.2.6",
  71. "@zip.js/zip.js": "^2.3.17",
  72. "codemirror": "5.63.3",
  73. "codemirror-js-mixed": "^0.9.2",
  74. "tldjs": "^2.3.1",
  75. "vue": "^2.6.14",
  76. "vue-template-compiler": "^2.6.14",
  77. "vueleton": "^1.0.6"
  78. },
  79. "engines": {
  80. "node": ">=10"
  81. },
  82. "husky": {
  83. "hooks": {
  84. "pre-commit": "yarn transform -t",
  85. "pre-push": "run-p lint test"
  86. }
  87. },
  88. "beta": 20
  89. }