package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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": "node scripts/transform-lock"
  18. },
  19. "description": "Violentmonkey",
  20. "devDependencies": {
  21. "@babel/plugin-proposal-function-bind": "^7.8.3",
  22. "@babel/register": "^7.8.3",
  23. "@gera2ld/plaid": "~1.5.6",
  24. "@gera2ld/plaid-vue": "~1.5.5",
  25. "@gera2ld/plaid-webpack": "~1.5.5",
  26. "@types/chrome": "latest",
  27. "cross-env": "^6.0.3",
  28. "cross-spawn": "^7.0.1",
  29. "del": "^5.1.0",
  30. "fancy-log": "^1.3.2",
  31. "gulp": "^4.0.2",
  32. "gulp-filter": "^6.0.0",
  33. "gulp-plumber": "^1.1.0",
  34. "gulp-uglify": "^3.0.2",
  35. "husky": "^4.0.10",
  36. "js-yaml": "^3.13.1",
  37. "jsdom": "^16.0.1",
  38. "plugin-error": "^1.0.0",
  39. "tape": "^4.13.0",
  40. "through2": "^3.0.1",
  41. "vinyl": "^2.1.0",
  42. "wrapper-webpack-plugin": "2.1.0"
  43. },
  44. "author": "Gerald <[email protected]>",
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/violentmonkey/violentmonkey.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  51. },
  52. "homepage": "https://github.com/violentmonkey/violentmonkey",
  53. "license": "MIT",
  54. "dependencies": {
  55. "@babel/runtime": "^7.8.3",
  56. "codemirror": "^5.52.0",
  57. "core-js": "^3.6.4",
  58. "tldjs": "^2.3.1",
  59. "vue": "^2.6.11",
  60. "vueleton": "^1.0.4"
  61. },
  62. "engines": {
  63. "node": ">=10"
  64. },
  65. "husky": {
  66. "hooks": {
  67. "pre-commit": "yarn transform \"=yarn\"",
  68. "pre-push": "yarn lint"
  69. }
  70. }
  71. }