package.json 839 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "pirates",
  3. "description": "Properly hijack require, i.e., properly define require hooks and customizations",
  4. "main": "lib/index.js",
  5. "types": "index.d.ts",
  6. "scripts": {
  7. "test": "ava"
  8. },
  9. "files": [
  10. "lib",
  11. "index.d.ts"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/danez/pirates.git"
  16. },
  17. "engines": {
  18. "node": ">= 6"
  19. },
  20. "author": {
  21. "name": "Ari Porad",
  22. "email": "ari@ariporad.com",
  23. "url": "http://ariporad.com"
  24. },
  25. "devDependencies": {
  26. "ava": "1.4.1",
  27. "decache": "4.6.2"
  28. },
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/danez/pirates/issues"
  32. },
  33. "homepage": "https://github.com/danez/pirates#readme",
  34. "ava": {
  35. "files": [
  36. "test/*.js"
  37. ],
  38. "sources": [
  39. "lib/**/*.js"
  40. ]
  41. },
  42. "version": "4.0.7"
  43. }