package.json 933 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "skeleton-loader",
  3. "version": "2.0.0",
  4. "title": "skeleton-loader",
  5. "description": "Loader module for webpack to execute your custom procedure. It works as your custom loader.",
  6. "keywords": [
  7. "webpack",
  8. "loader",
  9. "custom",
  10. "custom-loader",
  11. "function",
  12. "instant",
  13. "edit",
  14. "content",
  15. "modify"
  16. ],
  17. "main": "./lib/skeleton-loader.js",
  18. "files": [
  19. "lib/*.js"
  20. ],
  21. "dependencies": {
  22. "loader-utils": "^1.1.0"
  23. },
  24. "devDependencies": {
  25. "chai": "^4.1.2",
  26. "mocha": "^5.0.5",
  27. "sinon": "^4.4.10"
  28. },
  29. "scripts": {
  30. "test": "mocha"
  31. },
  32. "homepage": "https://github.com/anseki/skeleton-loader",
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/anseki/skeleton-loader.git"
  36. },
  37. "bugs": "https://github.com/anseki/skeleton-loader/issues",
  38. "license": "MIT",
  39. "author": {
  40. "name": "anseki",
  41. "url": "https://github.com/anseki"
  42. }
  43. }