package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@vue/preload-webpack-plugin",
  3. "version": "1.1.0",
  4. "description": "A webpack plugin for injecting <link rel='preload|prefecth'> into HtmlWebpackPlugin pages, with async chunk support",
  5. "author": "Addy Osmani <addy.osmani@gmail.com> (https://github.com/addyosmani)",
  6. "license": "Apache-2.0",
  7. "bugs": {
  8. "url": "https://github.com/vuejs/preload-webpack-plugin/issues"
  9. },
  10. "homepage": "https://github.com/vuejs/preload-webpack-plugin",
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/vuejs/preload-webpack-plugin.git"
  14. },
  15. "keywords": [
  16. "webpack",
  17. "plugin",
  18. "html-webpack-plugin",
  19. "script",
  20. "preload",
  21. "resource hints"
  22. ],
  23. "engines": {
  24. "node": ">=6.0.0"
  25. },
  26. "scripts": {
  27. "lint": "eslint --format=codeframe .",
  28. "test": "jasmine test/unit/* test/e2e/index.js",
  29. "coverage": "nyc npm run test",
  30. "clean": "rimraf build",
  31. "build": "npm run clean && babel --out-dir=build src",
  32. "publish-stable": "npm run lint && npm run test && npm run build && npm publish",
  33. "publish-next": "npm run lint && npm run test && npm run build && npm publish --tag next"
  34. },
  35. "main": "src/index.js",
  36. "files": [
  37. "src"
  38. ],
  39. "devDependencies": {
  40. "eslint": "^4.19.1",
  41. "eslint-plugin-vue-libs": "^2.1.0",
  42. "jasmine": "^3.1.0",
  43. "jsdom": "^11.9.0",
  44. "memory-fs": "^0.4.1",
  45. "nyc": "^11.7.1",
  46. "rimraf": "^2.6.2",
  47. "webpack": "^4.0.0"
  48. },
  49. "peerDependencies": {
  50. "html-webpack-plugin": ">=2.26.0",
  51. "webpack": ">=4.0.0"
  52. }
  53. }