package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "violentmonkey",
  3. "description": "Violentmonkey",
  4. "version": "2.12.13",
  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.8.3",
  27. "@babel/register": "^7.9.0",
  28. "@gera2ld/locky": "^0.1.1",
  29. "@gera2ld/plaid": "~1.5.6",
  30. "@gera2ld/plaid-vue": "~1.5.5",
  31. "@gera2ld/plaid-webpack": "~1.5.5",
  32. "@types/chrome": "0.0.101",
  33. "cross-env": "^7.0.2",
  34. "cross-spawn": "^7.0.1",
  35. "del": "^5.1.0",
  36. "fancy-log": "^1.3.2",
  37. "gulp": "^4.0.2",
  38. "gulp-plumber": "^1.1.0",
  39. "husky": "^4.2.3",
  40. "js-yaml": "^3.13.1",
  41. "jsdom": "^16.2.1",
  42. "npm-run-all": "^4.1.5",
  43. "plugin-error": "^1.0.0",
  44. "sharp": "^0.26.2",
  45. "sign-addon": "^3.1.0",
  46. "tape": "^4.13.2",
  47. "through2": "^3.0.1",
  48. "vinyl": "^2.1.0",
  49. "wrapper-webpack-plugin": "2.1.0"
  50. },
  51. "author": "Gerald <[email protected]>",
  52. "repository": {
  53. "type": "git",
  54. "url": "https://github.com/violentmonkey/violentmonkey.git"
  55. },
  56. "bugs": {
  57. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  58. },
  59. "homepage": "https://github.com/violentmonkey/violentmonkey",
  60. "license": "MIT",
  61. "dependencies": {
  62. "@babel/runtime": "^7.9.2",
  63. "@zip.js/zip.js": "^2.2.26",
  64. "codemirror": "5.60.0",
  65. "codemirror-js-mixed": "^0.9.2",
  66. "core-js": "^3.6.4",
  67. "tldjs": "^2.3.1",
  68. "vue": "^2.6.11",
  69. "vueleton": "^1.0.4"
  70. },
  71. "engines": {
  72. "node": ">=10"
  73. },
  74. "husky": {
  75. "hooks": {
  76. "pre-commit": "yarn transform -t",
  77. "pre-push": "yarn lint"
  78. }
  79. }
  80. }