package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "traverse",
  3. "version": "0.6.7",
  4. "description": "traverse and transform objects by visiting every node on a recursive walk",
  5. "main": "index.js",
  6. "directories": {
  7. "example": "example",
  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. "in-publish": "^2.0.1",
  16. "npmignore": "^0.3.0",
  17. "safe-publish-latest": "^2.0.0",
  18. "tape": "^5.6.1"
  19. },
  20. "scripts": {
  21. "prepack": "npmignore --auto --commentLines=autogenerated",
  22. "prepublishOnly": "safe-publish-latest",
  23. "prepublish": "not-in-publish || npm run prepublishOnly",
  24. "lint": "eslint --ext=js,mjs .",
  25. "pretest": "npm run lint",
  26. "tests-only": "tape 'test/**/*.js'",
  27. "test": "npm run tests-only",
  28. "posttest": "aud --production",
  29. "version": "auto-changelog && git add CHANGELOG.md",
  30. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  31. },
  32. "testling": {
  33. "files": "test/*.js",
  34. "browsers": {
  35. "iexplore": [
  36. "6.0",
  37. "7.0",
  38. "8.0",
  39. "9.0"
  40. ],
  41. "chrome": [
  42. "10.0",
  43. "20.0"
  44. ],
  45. "firefox": [
  46. "10.0",
  47. "15.0"
  48. ],
  49. "safari": [
  50. "5.1"
  51. ],
  52. "opera": [
  53. "12.0"
  54. ]
  55. }
  56. },
  57. "repository": {
  58. "type": "git",
  59. "url": "git://github.com/ljharb/js-traverse.git"
  60. },
  61. "homepage": "https://github.com/ljharb/js-traverse",
  62. "keywords": [
  63. "traverse",
  64. "walk",
  65. "recursive",
  66. "map",
  67. "forEach",
  68. "deep",
  69. "clone"
  70. ],
  71. "author": {
  72. "name": "James Halliday",
  73. "email": "mail@substack.net",
  74. "url": "http://substack.net"
  75. },
  76. "funding": {
  77. "url": "https://github.com/sponsors/ljharb"
  78. },
  79. "license": "MIT",
  80. "auto-changelog": {
  81. "output": "CHANGELOG.md",
  82. "template": "keepachangelog",
  83. "unreleased": false,
  84. "commitLimit": false,
  85. "backfillLimit": false,
  86. "hideCredit": true
  87. },
  88. "publishConfig": {
  89. "ignore": [
  90. ".github/workflows"
  91. ]
  92. }
  93. }