-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
41
42
43
44
45
46
47
48
{
"name": "binconv",
"version": "0.2.1-SNAPSHOT",
"description": "Binary converters for Blob, Uint8Array, ReadableStream, ArrayBuffer, string in JavaScript/TypeScript",
"main": "./dist/src/all.js",
"types": "./dist/src/all.d.ts",
"scripts": {
"generate-files": "ts-node scripts/generate-all.ts > src/all.ts",
"build": "npm run generate-files && tsc",
"prepare": "npm run build",
"test": "npm run generate-files && karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nwtgck/binconv-npm.git"
},
"author": "Ryo Ota <nwtgck@nwtgck.org> (https://github.com/nwtgck)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nwtgck/binconv-npm/issues"
},
"keywords": [
"binary",
"convert",
"conversions",
"Blob",
"Uint8Array",
"ReadableStream",
"ArrayBuffer",
"Base64"
],
"homepage": "https://github.com/nwtgck/binconv-npm#readme",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^14.18.0",
"@types/power-assert": "^1.5.3",
"jasmine-core": "^5.1.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.0.0",
"power-assert": "^1.6.1",
"ts-node": "^10.0.0",
"typescript": "^4.0.5"
}
}