package.json 2.4 KB

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