UNPKG

tranquil-stream

Version:

Working with streams, keeping it simple.

72 lines (71 loc) 1.55 kB
{ "name": "tranquil-stream", "version": "0.1.0", "description": "Working with streams, keeping it simple.", "author": "Trevor Ewen", "license": "MIT", "module": "dist/tranquil-stream.esm.js", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "homepage": "https://github.com/tewen/tranquil-stream#readme", "bugs": { "url": "https://github.com/tewen/tranquil-stream/issues" }, "keywords": [ "Util", "Useful", "Helpers" ], "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "test-watch": "tsdx test --watch", "lint": "tsdx lint", "lint-fix": "tsdx lint --fix", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "size-limit": [ { "path": "dist/tranquil-stream.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/tranquil-stream.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^5.0.1", "@types/fs-extra": "^9.0.12", "@types/uuid": "^8.3.1", "fs-extra": "^10.0.0", "husky": "^7.0.1", "size-limit": "^5.0.1", "tsdx": "^0.14.1", "tslib": "^2.3.0", "typescript": "^4.3.5", "uuid": "^8.3.2" } }