@transcend-io/remote-web-streams
Version:
Web streams that work across web workers and iframes.
57 lines (56 loc) • 1.27 kB
JSON
{
"name": "@transcend-io/remote-web-streams",
"version": "1.0.5",
"description": "Web streams that work across web workers and iframes.",
"main": "dist/remote-web-streams",
"types": "dist/types/index.d.ts",
"keywords": [
"remote",
"web",
"streams",
"readablestream",
"whatwg",
"worker"
],
"author": "Mattias Buelens",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"build": "npm run check:types && npm run build:bundle",
"build:bundle": "rollup -c",
"check:types": "tsc --project ./tsconfig.json --noEmit",
"prepare": "npm run build && npm test",
"start": "rollup -c -w",
"test": "jest"
},
"dependencies": {
"web-streams-polyfill": "^3.0.0"
},
"devDependencies": {
"@jest/globals": "^26.0.1",
"jest": "^26.0.1",
"rollup": "^2.12.0",
"rollup-plugin-dts": "^1.4.7",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^26.1.0",
"tslib": "^2.0.0",
"typescript": "^4.0.3"
},
"jest": {
"preset": "ts-jest",
"testRegex": "(\\.|/)(test|spec)\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsConfig": "./test/tsconfig.json"
}
}
}
}