package.json 1.8 KB

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