package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "supports-preserve-symlinks-flag",
  3. "version": "1.0.0",
  4. "description": "Determine if the current node version supports the `--preserve-symlinks` flag.",
  5. "main": "./index.js",
  6. "browser": "./browser.js",
  7. "exports": {
  8. ".": [
  9. {
  10. "browser": "./browser.js",
  11. "default": "./index.js"
  12. },
  13. "./index.js"
  14. ],
  15. "./package.json": "./package.json"
  16. },
  17. "sideEffects": false,
  18. "scripts": {
  19. "prepublishOnly": "safe-publish-latest",
  20. "prepublish": "not-in-publish || npm run prepublishOnly",
  21. "lint": "eslint --ext=js,mjs .",
  22. "pretest": "npm run lint",
  23. "tests-only": "nyc tape 'test/**/*.js'",
  24. "test": "npm run tests-only",
  25. "posttest": "aud --production",
  26. "version": "auto-changelog && git add CHANGELOG.md",
  27. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git"
  32. },
  33. "keywords": [
  34. "node",
  35. "flag",
  36. "symlink",
  37. "symlinks",
  38. "preserve-symlinks"
  39. ],
  40. "author": "Jordan Harband <ljharb@gmail.com>",
  41. "funding": {
  42. "url": "https://github.com/sponsors/ljharb"
  43. },
  44. "license": "MIT",
  45. "bugs": {
  46. "url": "https://github.com/inspect-js/node-supports-preserve-symlinks-flag/issues"
  47. },
  48. "homepage": "https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme",
  49. "devDependencies": {
  50. "@ljharb/eslint-config": "^20.1.0",
  51. "aud": "^1.1.5",
  52. "auto-changelog": "^2.3.0",
  53. "eslint": "^8.6.0",
  54. "nyc": "^10.3.2",
  55. "safe-publish-latest": "^2.0.0",
  56. "semver": "^6.3.0",
  57. "tape": "^5.4.0"
  58. },
  59. "engines": {
  60. "node": ">= 0.4"
  61. },
  62. "auto-changelog": {
  63. "output": "CHANGELOG.md",
  64. "template": "keepachangelog",
  65. "unreleased": false,
  66. "commitLimit": false,
  67. "backfillLimit": false,
  68. "hideCredit": true
  69. }
  70. }