package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "has-proto",
  3. "version": "1.0.3",
  4. "description": "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "sideEffects": false,
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "prepublishOnly": "safe-publish-latest",
  14. "prepublish": "not-in-publish || npm run prepublishOnly",
  15. "lint": "eslint --ext=js,mjs .",
  16. "postlint": "tsc -p .",
  17. "pretest": "npm run lint",
  18. "tests-only": "tape 'test/**/*.js'",
  19. "test": "npm run tests-only",
  20. "posttest": "aud --production",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/inspect-js/has-proto.git"
  27. },
  28. "keywords": [
  29. "prototype",
  30. "proto",
  31. "set",
  32. "get",
  33. "__proto__",
  34. "getPrototypeOf",
  35. "setPrototypeOf",
  36. "has"
  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/has-proto/issues"
  45. },
  46. "homepage": "https://github.com/inspect-js/has-proto#readme",
  47. "testling": {
  48. "files": "test/index.js"
  49. },
  50. "devDependencies": {
  51. "@ljharb/eslint-config": "^21.1.0",
  52. "@types/tape": "^5.6.4",
  53. "aud": "^2.0.4",
  54. "auto-changelog": "^2.4.0",
  55. "eslint": "=8.8.0",
  56. "in-publish": "^2.0.1",
  57. "npmignore": "^0.3.1",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.7.5",
  60. "typescript": "next"
  61. },
  62. "engines": {
  63. "node": ">= 0.4"
  64. },
  65. "auto-changelog": {
  66. "output": "CHANGELOG.md",
  67. "template": "keepachangelog",
  68. "unreleased": false,
  69. "commitLimit": false,
  70. "backfillLimit": false,
  71. "hideCredit": true
  72. },
  73. "publishConfig": {
  74. "ignore": [
  75. ".github/workflows"
  76. ]
  77. }
  78. }