web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.6 KiB

  1. {
  2. "name": "is-core-module",
  3. "version": "2.2.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": "safe-publish-latest",
  17. "lint": "eslint .",
  18. "pretest": "npm run lint",
  19. "tests-only": "tape 'test/**/*.js'",
  20. "test": "nyc npm run tests-only",
  21. "posttest": "aud --production",
  22. "version": "auto-changelog && git add CHANGELOG.md",
  23. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/inspect-js/is-core-module.git"
  28. },
  29. "keywords": [
  30. "core",
  31. "modules",
  32. "module",
  33. "npm",
  34. "node",
  35. "dependencies"
  36. ],
  37. "author": "Jordan Harband <ljharb@gmail.com>",
  38. "funding": {
  39. "url": "https://github.com/sponsors/ljharb"
  40. },
  41. "license": "MIT",
  42. "bugs": {
  43. "url": "https://github.com/inspect-js/is-core-module/issues"
  44. },
  45. "homepage": "https://github.com/inspect-js/is-core-module",
  46. "dependencies": {
  47. "has": "^1.0.3"
  48. },
  49. "devDependencies": {
  50. "@ljharb/eslint-config": "^17.3.0",
  51. "aud": "^1.1.3",
  52. "auto-changelog": "^2.2.1",
  53. "eslint": "^7.14.0",
  54. "nyc": "^10.3.2",
  55. "safe-publish-latest": "^1.1.4",
  56. "tape": "^5.0.1"
  57. },
  58. "auto-changelog": {
  59. "output": "CHANGELOG.md",
  60. "template": "keepachangelog",
  61. "unreleased": false,
  62. "commitLimit": false,
  63. "backfillLimit": false,
  64. "hideCredit": true
  65. }
  66. }