package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "enhanced-resolve",
  3. "version": "4.5.0",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "Offers a async require.resolve function. It's highly configurable.",
  6. "files": [
  7. "lib",
  8. "LICENSE"
  9. ],
  10. "dependencies": {
  11. "graceful-fs": "^4.1.2",
  12. "memory-fs": "^0.5.0",
  13. "tapable": "^1.0.0"
  14. },
  15. "licenses": [
  16. {
  17. "type": "MIT",
  18. "url": "http://www.opensource.org/licenses/mit-license.php"
  19. }
  20. ],
  21. "devDependencies": {
  22. "codecov.io": "^0.1.6",
  23. "coveralls": "^2.11.6",
  24. "eslint": "^5.9.0",
  25. "eslint-config-prettier": "^3.3.0",
  26. "eslint-plugin-node": "^8.0.0",
  27. "eslint-plugin-prettier": "^3.0.0",
  28. "husky": "^1.2.0",
  29. "istanbul": "^0.4.1",
  30. "lint-staged": "^8.1.0",
  31. "mocha": "^2.3.4",
  32. "prettier": "^1.15.2",
  33. "should": "^8.0.2"
  34. },
  35. "engines": {
  36. "node": ">=6.9.0"
  37. },
  38. "main": "lib/node.js",
  39. "homepage": "http://github.com/webpack/enhanced-resolve",
  40. "scripts": {
  41. "lint": "eslint lib test",
  42. "pretty": "prettier --loglevel warn --write \"{lib,test}/**/*.{js,json}\"",
  43. "pretest": "yarn lint",
  44. "test": "mocha --full-trace --check-leaks",
  45. "precover": "yarn lint",
  46. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  47. "travis": "yarn cover --report lcovonly"
  48. },
  49. "husky": {
  50. "hooks": {
  51. "pre-commit": "lint-staged"
  52. }
  53. },
  54. "lint-staged": {
  55. "*.js": [
  56. "eslint --cache"
  57. ]
  58. },
  59. "repository": {
  60. "type": "git",
  61. "url": "git://github.com/webpack/enhanced-resolve.git"
  62. }
  63. }