75 lines
1.9 KiB
JSON
Executable file
75 lines
1.9 KiB
JSON
Executable file
{
|
|
"name": "@ljharb/through",
|
|
"version": "2.3.12",
|
|
"description": "simplified stream construction",
|
|
"main": "index.js",
|
|
"types": "./through.d.ts",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
"prepublishOnly": "safe-publish-latest",
|
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
"lint": "eslint --ext=js,mjs .",
|
|
"postlint": "npm run tsc",
|
|
"tsc": "tsc -p .",
|
|
"posttsc": "attw --pack",
|
|
"pretest": "npm run lint",
|
|
"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)\")\""
|
|
},
|
|
"dependencies": {
|
|
"call-bind": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "^0.13.6",
|
|
"@ljharb/eslint-config": "^21.1.0",
|
|
"@types/call-bind": "^1.0.5",
|
|
"aud": "^2.0.4",
|
|
"auto-changelog": "^2.4.0",
|
|
"eslint": "=8.8.0",
|
|
"from": "^0.1.7",
|
|
"in-publish": "^2.0.1",
|
|
"npmignore": "^0.3.1",
|
|
"nyc": "^10.3.2",
|
|
"safe-publish-latest": "^2.0.0",
|
|
"stream-spec": "^0.3.6",
|
|
"tape": "^5.7.4",
|
|
"typescript": "^5.4.0-dev.20240124"
|
|
},
|
|
"keywords": [
|
|
"stream",
|
|
"streams",
|
|
"user-streams",
|
|
"pipe"
|
|
],
|
|
"author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ljharb/through.git"
|
|
},
|
|
"homepage": "https://github.com/ljharb/through",
|
|
"testling": {
|
|
"files": "test/*.js"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.4"
|
|
},
|
|
"auto-changelog": {
|
|
"output": "CHANGELOG.md",
|
|
"template": "keepachangelog",
|
|
"unreleased": false,
|
|
"commitLimit": false,
|
|
"backfillLimit": false,
|
|
"hideCredit": true,
|
|
"startingVersion": "2.3.9"
|
|
},
|
|
"publishConfig": {
|
|
"ignore": [
|
|
".github/workflows"
|
|
]
|
|
}
|
|
}
|