package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "violentmonkey",
  3. "version": "2.6.4",
  4. "scripts": {
  5. "dev": "gulp watch",
  6. "prebuild": "npm run lint && 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. "prepush": "npm run lint"
  16. },
  17. "description": "Violentmonkey",
  18. "devDependencies": {
  19. "babel-core": "^6.25.0",
  20. "babel-eslint": "^7.2.2",
  21. "babel-loader": "^7.0.0",
  22. "babel-plugin-transform-export-extensions": "^6.22.0",
  23. "babel-plugin-transform-runtime": "^6.23.0",
  24. "babel-preset-env": "^1.5.2",
  25. "babili-webpack-plugin": "^0.1.1",
  26. "css-loader": "^0.28.4",
  27. "del": "^3.0.0",
  28. "eslint": "^3.19.0",
  29. "eslint-config-airbnb-base": "^11.2.0",
  30. "eslint-friendly-formatter": "^3.0.0",
  31. "eslint-import-resolver-webpack": "^0.8.1",
  32. "eslint-loader": "^1.7.1",
  33. "eslint-plugin-html": "^2.0.3",
  34. "eslint-plugin-import": "^2.3.0",
  35. "extract-text-webpack-plugin": "^2.1.2",
  36. "friendly-errors-webpack-plugin": "^1.6.1",
  37. "gulp": "^3.9.1",
  38. "gulp-filter": "^5.0.0",
  39. "gulp-svg-sprite": "^1.3.7",
  40. "gulp-uglify": "^2.0.0",
  41. "gulp-util": "^3.0.7",
  42. "html-webpack-plugin": "^2.28.0",
  43. "husky": "^0.13.4",
  44. "js-yaml": "^3.8.4",
  45. "localStorage": "^1.0.3",
  46. "precss": "^1.4.0",
  47. "svgo": "^0.7.2",
  48. "tape": "^4.6.3",
  49. "through2": "^2.0.3",
  50. "vue-loader": "^12.2.1",
  51. "vue-style-loader": "^3.0.1",
  52. "vue-template-compiler": "^2.3.4",
  53. "webpack": "^2.6.1",
  54. "webpack-bundle-size-analyzer": "^2.7.0",
  55. "wrapper-webpack-plugin": "^0.1.11"
  56. },
  57. "author": "Gerald <[email protected]>",
  58. "repository": {
  59. "type": "git",
  60. "url": "https://github.com/violentmonkey/violentmonkey.git"
  61. },
  62. "bugs": {
  63. "url": "https://github.com/violentmonkey/violentmonkey/issues"
  64. },
  65. "homepage": "https://github.com/violentmonkey/violentmonkey",
  66. "license": "MIT",
  67. "dependencies": {
  68. "codemirror": "^5.26.0",
  69. "core-js": "^2.4.1",
  70. "sync-promise-lite": "^0.2.3",
  71. "vue": "^2.3.4",
  72. "vue-code": "^1.2.1"
  73. }
  74. }