package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.12.7",
  4. "scripts": {
  5. "dev": "gulp dev",
  6. "prebuild": "yarn lint",
  7. "build": "cross-env NODE_ENV=production gulp build",
  8. "build:firefox": "cross-env TARGET=firefox yarn build",
  9. "analyze": "cross-env RUN_ENV=analyze npm run build",
  10. "i18n": "gulp i18n",
  11. "copyI18n": "gulp copyI18n",
  12. "lint": "yarn lint:js && yarn lint:yml",
  13. "lint:js": "eslint --ext .js,.vue .",
  14. "lint:yml": "gulp check",
  15. "svgo": "plaid svgo",
  16. "test": "cross-env BABEL_ENV=test tape -r ./test/mock/register 'test/**/*.test.js'",
  17. "transform": "locky yarn yarn"
  18. },
  19. "description": "Violentmonkey",
  20. "devDependencies": {
  21. "@babel/plugin-proposal-function-bind": "^7.8.3",
  22. "@babel/register": "^7.9.0",
  23. "@gera2ld/locky": "^0.1.0",
  24. "@gera2ld/plaid": "~1.5.6",
  25. "@gera2ld/plaid-vue": "~1.5.5",
  26. "@gera2ld/plaid-webpack": "~1.5.5",
  27. "@types/chrome": "0.0.101",
  28. "cross-env": "^7.0.2",
  29. "cross-spawn": "^7.0.1",
  30. "del": "^5.1.0",
  31. "fancy-log": "^1.3.2",
  32. "gulp": "^4.0.2",
  33. "gulp-filter": "^6.0.0",
  34. "gulp-plumber": "^1.1.0",
  35. "gulp-uglify": "^3.0.2",
  36. "husky": "^4.2.3",
  37. "js-yaml": "^3.13.1",
  38. "jsdom": "^16.2.1",
  39. "plugin-error": "^1.0.0",
  40. "tape": "^4.13.2",
  41. "through2": "^3.0.1",
  42. "vinyl": "^2.1.0",
  43. "wrapper-webpack-plugin": "2.1.0"
  44. },
  45. "author": "Gerald <[email protected]>",
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/violentmonkey/violentmonkey.git"
  49. },
  50. "bugs": {
  51. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  52. },
  53. "homepage": "https://github.com/violentmonkey/violentmonkey",
  54. "license": "MIT",
  55. "dependencies": {
  56. "@babel/runtime": "^7.9.2",
  57. "codemirror": "^5.57.0",
  58. "codemirror-js-mixed": "^0.9.2",
  59. "core-js": "^3.6.4",
  60. "tldjs": "^2.3.1",
  61. "vue": "^2.6.11",
  62. "vueleton": "^1.0.4"
  63. },
  64. "engines": {
  65. "node": ">=10"
  66. },
  67. "husky": {
  68. "hooks": {
  69. "pre-commit": "yarn transform -t",
  70. "pre-push": "yarn lint"
  71. }
  72. }
  73. }