package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.8.17",
  4. "scripts": {
  5. "dev": "gulp watch",
  6. "prebuild": "npm run lint && gulp clean",
  7. "build": "cross-env NODE_ENV=production gulp build",
  8. "build:firefox": "cross-env TARGET=firefox npm run build",
  9. "analyze": "webpack --profile --json --config scripts/webpack.conf.js | webpack-bundle-size-analyzer",
  10. "analyze:json": "webpack --profile --json --config scripts/webpack.conf.js > stats.json",
  11. "i18n": "gulp i18n",
  12. "lint": "eslint --ext .js,.vue .",
  13. "svgo": "svgo --config .svgo.yml src/resources/icons",
  14. "pretest": "cross-env NODE_ENV=test webpack --config scripts/webpack.test.conf.js",
  15. "test": "node dist/test",
  16. "prepush": "npm run lint"
  17. },
  18. "description": "Violentmonkey",
  19. "devDependencies": {
  20. "babel-core": "^6.26.0",
  21. "babel-eslint": "^8.0.1",
  22. "babel-loader": "^7.1.2",
  23. "babel-minify-webpack-plugin": "^0.2.0",
  24. "babel-plugin-transform-export-extensions": "^6.22.0",
  25. "babel-plugin-transform-runtime": "^6.23.0",
  26. "babel-preset-env": "^1.6.0",
  27. "cross-env": "^5.0.5",
  28. "css-loader": "^0.28.7",
  29. "del": "^3.0.0",
  30. "eslint": "^4.6.1",
  31. "eslint-config-airbnb-base": "^12.0.0",
  32. "eslint-import-resolver-webpack": "^0.8.3",
  33. "eslint-plugin-html": "^3.2.1",
  34. "eslint-plugin-import": "^2.7.0",
  35. "extract-text-webpack-plugin": "^3.0.0",
  36. "friendly-errors-webpack-plugin": "^1.6.1",
  37. "gulp": "^3.9.1",
  38. "gulp-filter": "^5.0.1",
  39. "gulp-plumber": "^1.1.0",
  40. "gulp-svg-sprite": "^1.3.7",
  41. "gulp-uglify": "^3.0.0",
  42. "gulp-util": "^3.0.7",
  43. "html-webpack-plugin": "^2.30.1",
  44. "husky": "^0.14.3",
  45. "js-yaml": "^3.9.1",
  46. "postcss-loader": "^2.0.6",
  47. "postcss-scss": "^1.0.2",
  48. "precss": "^2.0.0",
  49. "svgo": "^0.7.2",
  50. "tape": "^4.8.0",
  51. "through2": "^2.0.3",
  52. "vue-loader": "^13.0.4",
  53. "vue-style-loader": "^3.0.1",
  54. "vue-template-compiler": "^2.4.2",
  55. "webpack": "^3.5.6",
  56. "webpack-bundle-size-analyzer": "^2.7.0",
  57. "wrapper-webpack-plugin": "^1.0.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. "codemirror": "^5.29.0",
  71. "core-js": "^2.5.1",
  72. "tldjs": "^2.2.0",
  73. "vue": "^2.4.2",
  74. "vueleton": "^0.5.0"
  75. },
  76. "engines": {
  77. "node": ">=8"
  78. }
  79. }