package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "is-core-module",
  3. "version": "2.4.0",
  4. "description": "Is this specifier a node.js core module?",
  5. "main": "index.js",
  6. "exports": {
  7. ".": [
  8. {
  9. "default": "./index.js"
  10. },
  11. "./index.js"
  12. ],
  13. "./package.json": "./package.json"
  14. },
  15. "scripts": {
  16. "prepublish": "not-in-publish || npm run prepublishOnly",
  17. "prepublishOnly": "safe-publish-latest",
  18. "lint": "eslint .",
  19. "pretest": "npm run lint",
  20. "tests-only": "tape 'test/**/*.js'",
  21. "test": "nyc npm run tests-only",
  22. "posttest": "aud --production",
  23. "version": "auto-changelog && git add CHANGELOG.md",
  24. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/inspect-js/is-core-module.git"
  29. },
  30. "keywords": [
  31. "core",
  32. "modules",
  33. "module",
  34. "npm",
  35. "node",
  36. "dependencies"
  37. ],
  38. "author": "Jordan Harband <ljharb@gmail.com>",
  39. "funding": {
  40. "url": "https://github.com/sponsors/ljharb"
  41. },
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/inspect-js/is-core-module/issues"
  45. },
  46. "homepage": "https://github.com/inspect-js/is-core-module",
  47. "dependencies": {
  48. "has": "^1.0.3"
  49. },
  50. "devDependencies": {
  51. "@ljharb/eslint-config": "^17.6.0",
  52. "aud": "^1.1.5",
  53. "auto-changelog": "^2.2.1",
  54. "eslint": "^7.26.0",
  55. "nyc": "^10.3.2",
  56. "safe-publish-latest": "^1.1.4",
  57. "semver": "^6.3.0",
  58. "tape": "^5.2.2"
  59. },
  60. "auto-changelog": {
  61. "output": "CHANGELOG.md",
  62. "template": "keepachangelog",
  63. "unreleased": false,
  64. "commitLimit": false,
  65. "backfillLimit": false,
  66. "hideCredit": true
  67. }
  68. }