package.json (1928B)
1 { 2 "name": "@stdlib/streams", 3 "version": "0.0.12", 4 "description": "Standard library streams.", 5 "license": "Apache-2.0", 6 "author": { 7 "name": "The Stdlib Authors", 8 "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" 9 }, 10 "contributors": [ 11 { 12 "name": "The Stdlib Authors", 13 "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" 14 } 15 ], 16 "main": "./lib", 17 "directories": { 18 "doc": "./docs", 19 "example": "./examples", 20 "lib": "./lib", 21 "test": "./test" 22 }, 23 "types": "./docs/types", 24 "scripts": { 25 "test": "make test", 26 "test-cov": "make test-cov", 27 "examples": "make examples", 28 "benchmark": "make benchmark" 29 }, 30 "homepage": "https://stdlib.io", 31 "repository": { 32 "type": "git", 33 "url": "git://github.com/stdlib-js/streams.git" 34 }, 35 "bugs": { 36 "url": "https://github.com/stdlib-js/stdlib/issues" 37 }, 38 "dependencies": { 39 "@stdlib/assert": "^0.0.x", 40 "@stdlib/buffer": "^0.0.x", 41 "@stdlib/cli": "^0.0.x", 42 "@stdlib/fs": "^0.0.x", 43 "@stdlib/types": "^0.0.x", 44 "@stdlib/utils": "^0.0.x", 45 "debug": "^2.6.9", 46 "readable-stream": "^2.1.4" 47 }, 48 "devDependencies": { 49 "@stdlib/array": "^0.0.x", 50 "@stdlib/bench": "^0.0.x", 51 "@stdlib/blas": "^0.0.x", 52 "@stdlib/process": "^0.0.x", 53 "@stdlib/random": "^0.0.x", 54 "proxyquire": "^2.0.0", 55 "tape": "git+https://github.com/kgryte/tape.git#fix/globby", 56 "istanbul": "^0.4.1", 57 "tap-spec": "5.x.x" 58 }, 59 "engines": { 60 "node": ">=0.10.0", 61 "npm": ">2.7.0" 62 }, 63 "os": [ 64 "aix", 65 "darwin", 66 "freebsd", 67 "linux", 68 "macos", 69 "openbsd", 70 "sunos", 71 "win32", 72 "windows" 73 ], 74 "keywords": [ 75 "stdlib", 76 "standard", 77 "library", 78 "std", 79 "lib", 80 "streams", 81 "online", 82 "realtime", 83 "real-time" 84 ], 85 "funding": { 86 "type": "patreon", 87 "url": "https://www.patreon.com/athan" 88 } 89 }