package.json 1.6 KB

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