-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "readable-from-web",
"type": "commonjs",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "Experimental converter from WHATWG ReadableStream to readable-stream Readable",
"license": "MIT",
"homepage": "https://github.com/comunica/readable-from-web.js",
"repository": {
"type": "git",
"url": "https://github.com/comunica/readable-from-web.js"
},
"bugs": {
"url": "https://github.com/comunica/readable-from-web/issues"
},
"main": "lib/index.js",
"types": "lib/index",
"files": [
"lib/*.d.ts",
"lib/*.js",
"lib/*.js.map"
],
"scripts": {
"lint": "eslint .",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@types/readable-stream": "^4.0.0",
"readable-stream": "^4.0.0"
},
"devDependencies": {
"@playwright/test": "^1.0.0",
"@rubensworks/eslint-config": "^3.0.0",
"@types/jest": "^29.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"readable-stream-node-to-web": "^1.0.0",
"stream-to-string": "^1.0.0",
"streamify-string": "^1.0.0",
"ts-jest": "^29.0.0",
"ts-loader": "^9.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.0"
}
}