-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"name": "readable-stream-sized-reader",
"version": "0.1.0-SNAPSHOT",
"description": "ReadableStream Reader with specified byte length read()",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "karma start"
},
"keywords": [
"ReadableStream",
"read",
"binary"
],
"repository": {
"type": "git",
"url": "https://github.com/nwtgck/readable-stream-sized-reader"
},
"author": "Ryo Ota <nwtgck@nwtgck.org> (https://github.com/nwtgck)",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^14.18.63",
"@types/power-assert": "^1.5.12",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.4",
"power-assert": "^1.6.1",
"ts-node": "^10.9.2",
"typescript": "^4.7.4"
},
"dependencies": {
"binconv": "^0.2.0"
}
}