| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 | {	"name": "traverse",	"version": "0.6.11",	"description": "traverse and transform objects by visiting every node on a recursive walk",	"main": "index.js",	"directories": {		"example": "example",		"test": "test"	},	"devDependencies": {		"@ljharb/eslint-config": "^21.1.1",		"auto-changelog": "^2.5.0",		"encoding": "^0.1.13",		"es-value-fixtures": "^1.7.0",		"eslint": "=8.8.0",		"in-publish": "^2.0.1",		"npmignore": "^0.3.1",		"safe-publish-latest": "^2.0.0",		"tape": "^5.9.0"	},	"scripts": {		"prepack": "npmignore --auto --commentLines=autogenerated",		"prepublishOnly": "safe-publish-latest",		"prepublish": "not-in-publish || npm run prepublishOnly",		"lint": "eslint --ext=js,mjs .",		"pretest": "npm run lint",		"tests-only": "tape 'test/**/*.js'",		"test": "npm run tests-only",		"posttest": "npx npm@'>=10.2' audit --production",		"version": "auto-changelog && git add CHANGELOG.md",		"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""	},	"testling": {		"files": "test/*.js",		"browsers": {			"iexplore": [				"6.0",				"7.0",				"8.0",				"9.0"			],			"chrome": [				"10.0",				"20.0"			],			"firefox": [				"10.0",				"15.0"			],			"safari": [				"5.1"			],			"opera": [				"12.0"			]		}	},	"repository": {		"type": "git",		"url": "git://github.com/ljharb/js-traverse.git"	},	"homepage": "https://github.com/ljharb/js-traverse",	"keywords": [		"traverse",		"walk",		"recursive",		"map",		"forEach",		"deep",		"clone"	],	"author": {		"name": "James Halliday",		"email": "mail@substack.net",		"url": "http://substack.net"	},	"funding": {		"url": "https://github.com/sponsors/ljharb"	},	"license": "MIT",	"auto-changelog": {		"output": "CHANGELOG.md",		"template": "keepachangelog",		"unreleased": false,		"commitLimit": false,		"backfillLimit": false,		"hideCredit": true	},	"publishConfig": {		"ignore": [			".github/workflows"		]	},	"dependencies": {		"gopd": "^1.2.0",		"typedarray.prototype.slice": "^1.0.5",		"which-typed-array": "^1.1.18"	},	"engines": {		"node": ">= 0.4"	}}
 |