package.json 775 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "builtin-modules",
  3. "version": "3.3.0",
  4. "description": "List of the Node.js builtin modules",
  5. "license": "MIT",
  6. "repository": "sindresorhus/builtin-modules",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd",
  18. "make": "node make.js"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts",
  23. "static.js",
  24. "static.d.ts",
  25. "builtin-modules.json"
  26. ],
  27. "keywords": [
  28. "builtin",
  29. "built-in",
  30. "builtins",
  31. "node",
  32. "modules",
  33. "core",
  34. "bundled",
  35. "list",
  36. "array",
  37. "names"
  38. ],
  39. "devDependencies": {
  40. "ava": "^1.4.1",
  41. "tsd": "^0.7.2",
  42. "xo": "^0.24.0"
  43. }
  44. }