package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "enhanced-resolve",
  3. "version": "3.4.1",
  4. "author": "Tobias Koppers @sokra",
  5. "description": "Offers a async require.resolve function. It's highly configurable.",
  6. "files": [
  7. "lib"
  8. ],
  9. "dependencies": {
  10. "graceful-fs": "^4.1.2",
  11. "memory-fs": "^0.4.0",
  12. "object-assign": "^4.0.1",
  13. "tapable": "^0.2.7"
  14. },
  15. "licenses": [
  16. {
  17. "type": "MIT",
  18. "url": "http://www.opensource.org/licenses/mit-license.php"
  19. }
  20. ],
  21. "devDependencies": {
  22. "beautify-lint": "^1.0.3",
  23. "codecov.io": "^0.1.6",
  24. "coveralls": "^2.11.6",
  25. "eslint": "^3.14.1",
  26. "eslint-plugin-node": "^3.0.5",
  27. "eslint-plugin-nodeca": "^1.0.3",
  28. "istanbul": "^0.4.1",
  29. "js-beautify": "^1.5.10",
  30. "mocha": "^2.3.4",
  31. "should": "^8.0.2"
  32. },
  33. "engines": {
  34. "node": ">=4.3.0 <5.0.0 || >=5.10"
  35. },
  36. "main": "lib/node.js",
  37. "homepage": "http://github.com/webpack/enhanced-resolve",
  38. "scripts": {
  39. "beautify-lint": "beautify-lint lib/**.js test/*.js",
  40. "beautify": "beautify-rewrite lib/**.js test/*.js",
  41. "lint": "eslint lib test",
  42. "pretest": "npm run lint && npm run beautify-lint",
  43. "test": "mocha --full-trace --check-leaks",
  44. "precover": "npm run lint && npm run beautify-lint",
  45. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  46. "travis": "npm run cover -- --report lcovonly"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "git://github.com/webpack/enhanced-resolve.git"
  51. }
  52. }