package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.6.1",
  4. "scripts": {
  5. "dev": "gulp watch",
  6. "prebuild": "gulp clean",
  7. "build": "gulp build",
  8. "analyze": "webpack --profile --json --config scripts/webpack.conf.js | webpack-bundle-size-analyzer",
  9. "analyze:json": "webpack --profile --json --config scripts/webpack.conf.js > stats.json",
  10. "i18n": "gulp i18n",
  11. "lint": "eslint --ext .js,.vue .",
  12. "svgo": "svgo icons",
  13. "pretest": "webpack --config scripts/webpack.test.conf.js",
  14. "test": "node dist/test"
  15. },
  16. "description": "Violentmonkey",
  17. "devDependencies": {
  18. "babel-core": "^6.24.0",
  19. "babel-eslint": "^7.2.1",
  20. "babel-loader": "^6.4.1",
  21. "babel-plugin-transform-runtime": "^6.23.0",
  22. "babel-preset-es2015": "^6.24.0",
  23. "css-loader": "^0.27.3",
  24. "del": "^2.2.0",
  25. "eslint": "^3.18.0",
  26. "eslint-config-airbnb-base": "^11.1.2",
  27. "eslint-friendly-formatter": "^2.0.7",
  28. "eslint-import-resolver-webpack": "^0.8.1",
  29. "eslint-loader": "^1.7.0",
  30. "eslint-plugin-html": "^2.0.1",
  31. "eslint-plugin-import": "^2.2.0",
  32. "extract-text-webpack-plugin": "^2.1.0",
  33. "friendly-errors-webpack-plugin": "^1.6.1",
  34. "gulp": "^3.9.1",
  35. "gulp-concat": "^2.6.0",
  36. "gulp-filter": "^5.0.0",
  37. "gulp-svg-sprite": "^1.2.19",
  38. "gulp-uglify": "^2.0.0",
  39. "gulp-util": "^3.0.7",
  40. "html-minifier": "^3.2.3",
  41. "html-webpack-plugin": "^2.28.0",
  42. "js-yaml": "^3.5.5",
  43. "localStorage": "^1.0.3",
  44. "precss": "^1.4.0",
  45. "svgo": "^0.7.2",
  46. "tape": "^4.6.3",
  47. "through2": "^2.0.3",
  48. "vue-loader": "^11.3.3",
  49. "vue-style-loader": "^2.0.4",
  50. "vue-template-compiler": "^2.2.5",
  51. "webpack": "^2.3.2",
  52. "webpack-bundle-size-analyzer": "^2.5.0"
  53. },
  54. "author": "Gerald <[email protected]>",
  55. "repository": {
  56. "type": "git",
  57. "url": "https://github.com/violentmonkey/violentmonkey.git"
  58. },
  59. "bugs": {
  60. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  61. },
  62. "homepage": "https://github.com/violentmonkey/violentmonkey",
  63. "license": "MIT",
  64. "dependencies": {
  65. "codemirror": "^5.25.0",
  66. "core-js": "^2.4.1",
  67. "define-commonjs": "^1.1.2",
  68. "sync-promise-lite": "^0.2.3",
  69. "vue": "^2.2.5"
  70. }
  71. }