frontend/.pnpm-store/v3/files/11/9f9ce097477915c69a70f6dce6bbbfdf222b6ac6215c2fa2bcb27a1e4fc02442bb0abfffd0a163ee0506eb2d2d04f218d358bce928da49b167cb13e1f19f55

74 lines
1.8 KiB
Plaintext

{
"name": "iterate-iterator",
"version": "1.0.2",
"description": "Iterate any JS iterator. Works robustly in all environments, all versions.",
"main": "index.js",
"exports": {
".": [
{
"default": "./index.js"
},
"./index.js"
],
"./package.json": "./package.json"
},
"scripts": {
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"pretest": "npm run lint",
"prelint": "evalmd README.md",
"lint": "eslint .",
"tests-only": "nyc tape 'test/**/*.js'",
"test": "npm run tests-only",
"posttest": "aud --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)\")\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ljharb/iterate-iterator.git"
},
"keywords": [
"iterate",
"iterator",
"iterable",
"es2015",
"es6",
"symbol.iterator",
"symbol",
"next"
],
"author": "Jordan Harband <ljharb@gmail.com>",
"funding": {
"url": "https://github.com/sponsors/ljharb"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ljharb/iterate-iterator/issues"
},
"homepage": "https://github.com/ljharb/iterate-iterator#readme",
"devDependencies": {
"@ljharb/eslint-config": "^18.0.0",
"aud": "^1.1.5",
"auto-changelog": "^2.3.0",
"es-get-iterator": "^1.1.2",
"eslint": "^7.32.0",
"evalmd": "^0.0.19",
"for-each": "^0.3.3",
"nyc": "^10.3.2",
"object-inspect": "^1.11.0",
"safe-publish-latest": "^1.1.4",
"tape": "^5.3.1"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false
},
"testling": {
"files": "test/index.js"
}
}