package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.12.7",
  4. "beta": 18,
  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 yarn build",
  10. "analyze": "cross-env RUN_ENV=analyze npm run build",
  11. "i18n": "gulp i18n",
  12. "copyI18n": "gulp copyI18n",
  13. "lint": "yarn lint:js && yarn 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": "yarn lint && yarn test",
  19. "transform": "locky yarn yarn",
  20. "bump": "yarn ci && gulp bump --commit",
  21. "preversion": "yarn ci && gulp bump --reset",
  22. "update:selfHosted": "gulp updateVersions"
  23. },
  24. "description": "Violentmonkey",
  25. "devDependencies": {
  26. "@actions/core": "^1.2.6",
  27. "@babel/plugin-proposal-function-bind": "^7.8.3",
  28. "@babel/register": "^7.9.0",
  29. "@gera2ld/locky": "^0.1.0",
  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. "cross-env": "^7.0.2",
  35. "cross-spawn": "^7.0.1",
  36. "del": "^5.1.0",
  37. "fancy-log": "^1.3.2",
  38. "gulp": "^4.0.2",
  39. "gulp-filter": "^6.0.0",
  40. "gulp-plumber": "^1.1.0",
  41. "gulp-uglify": "^3.0.2",
  42. "husky": "^4.2.3",
  43. "js-yaml": "^3.13.1",
  44. "jsdom": "^16.2.1",
  45. "plugin-error": "^1.0.0",
  46. "sharp": "^0.26.2",
  47. "tape": "^4.13.2",
  48. "through2": "^3.0.1",
  49. "vinyl": "^2.1.0",
  50. "wrapper-webpack-plugin": "2.1.0"
  51. },
  52. "author": "Gerald <[email protected]>",
  53. "repository": {
  54. "type": "git",
  55. "url": "https://github.com/violentmonkey/violentmonkey.git"
  56. },
  57. "bugs": {
  58. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  59. },
  60. "homepage": "https://github.com/violentmonkey/violentmonkey",
  61. "license": "MIT",
  62. "dependencies": {
  63. "@babel/runtime": "^7.9.2",
  64. "codemirror": "^5.58.2",
  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. }