package.json 956 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "optional-require",
  3. "version": "1.1.8",
  4. "description": "NodeJS Require that let you handle module not found error without try/catch",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "build": "tsc",
  9. "test": "xrun --serial build xarc/test-only",
  10. "coverage": "xrun --serial build xarc/test-cov",
  11. "publish-util-pre": "publish-util-prepublishonly",
  12. "prepublishOnly": "xrun --serial [[build, docs], xarc/check, publish-util-pre]",
  13. "docs": "xrun xarc/docs && touch docs/.nojekyll",
  14. "postpack": "publish-util-postpack"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/jchip/optional-require.git"
  19. },
  20. "keywords": [
  21. "optional require",
  22. "optional",
  23. "require"
  24. ],
  25. "files": [
  26. "dist",
  27. "index.js",
  28. "index.d.ts"
  29. ],
  30. "engines": {
  31. "node": ">=4"
  32. },
  33. "author": "Joel Chen",
  34. "license": "Apache-2.0",
  35. "dependencies": {
  36. "require-at": "^1.0.6"
  37. }
  38. }