1{ 2 "name": "minipass", 3 "version": "3.3.6", 4 "description": "minimal implementation of a PassThrough stream", 5 "main": "index.js", 6 "types": "index.d.ts", 7 "dependencies": { 8 "yallist": "^4.0.0" 9 }, 10 "devDependencies": { 11 "@types/node": "^17.0.41", 12 "end-of-stream": "^1.4.0", 13 "prettier": "^2.6.2", 14 "tap": "^16.2.0", 15 "through2": "^2.0.3", 16 "ts-node": "^10.8.1", 17 "typescript": "^4.7.3" 18 }, 19 "scripts": { 20 "test": "tap", 21 "preversion": "npm test", 22 "postversion": "npm publish", 23 "postpublish": "git push origin --follow-tags" 24 }, 25 "repository": { 26 "type": "git", 27 "url": "git+https://github.com/isaacs/minipass.git" 28 }, 29 "keywords": [ 30 "passthrough", 31 "stream" 32 ], 33 "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)", 34 "license": "ISC", 35 "files": [ 36 "index.d.ts", 37 "index.js" 38 ], 39 "tap": { 40 "check-coverage": true 41 }, 42 "engines": { 43 "node": ">=8" 44 }, 45 "prettier": { 46 "semi": false, 47 "printWidth": 80, 48 "tabWidth": 2, 49 "useTabs": false, 50 "singleQuote": true, 51 "jsxSingleQuote": false, 52 "bracketSameLine": true, 53 "arrowParens": "avoid", 54 "endOfLine": "lf" 55 } 56} 57