package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "jsonify",
  3. "version": "0.0.1",
  4. "description": "JSON without touching any globals",
  5. "main": "index.js",
  6. "directories": {
  7. "lib": ".",
  8. "test": "test"
  9. },
  10. "devDependencies": {
  11. "@ljharb/eslint-config": "^21.0.0",
  12. "aud": "^2.0.1",
  13. "auto-changelog": "^2.4.0",
  14. "eslint": "=8.8.0",
  15. "garbage": "0.0.x",
  16. "in-publish": "^2.0.1",
  17. "npmignore": "^0.3.0",
  18. "safe-publish-latest": "^2.0.0",
  19. "tape": "^5.6.1"
  20. },
  21. "scripts": {
  22. "prepack": "npmignore --auto --commentLines=autogenerated",
  23. "prepublishOnly": "safe-publish-latest",
  24. "prepublish": "not-in-publish || npm run prepublishOnly",
  25. "lint": "eslint --ext=js,mjs .",
  26. "pretest": "npm run lint",
  27. "tests-only": "tape 'test/**/*.js'",
  28. "test": "npm run tests-only",
  29. "posttest": "aud --production",
  30. "version": "auto-changelog && git add CHANGELOG.md",
  31. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/ljharb/jsonify.git"
  36. },
  37. "keywords": [
  38. "json",
  39. "browser"
  40. ],
  41. "author": {
  42. "name": "Douglas Crockford",
  43. "url": "https://crockford.com/"
  44. },
  45. "funding": {
  46. "url": "https://github.com/sponsors/ljharb"
  47. },
  48. "license": "Public Domain",
  49. "auto-changelog": {
  50. "output": "CHANGELOG.md",
  51. "template": "keepachangelog",
  52. "unreleased": false,
  53. "commitLimit": false,
  54. "backfillLimit": false,
  55. "hideCredit": true
  56. },
  57. "publishConfig": {
  58. "ignore": [
  59. ".github/workflows"
  60. ]
  61. }
  62. }