-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 905 Bytes
/
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
{
"name": "toab",
"version": "2.3.0",
"description": "To Array Buffer: Convert Buffer, Data URLs, Files, Text, and Typed Arrays to Array Buffers",
"main": "toab.js",
"types": "toab.d.ts",
"files": [
"toab.d.ts",
"toab.js"
],
"scripts": {
"format": "npx prettier --arrow-parens=avoid --trailing-comma=none --write *.js *.ts",
"serve": "npx http-server",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielJDufour/toab.git"
},
"keywords": [
"array",
"buffer",
"arraybuffer",
"typed",
"typedarray",
"uint8array"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/DanielJDufour/toab/issues"
},
"homepage": "https://github.com/DanielJDufour/toab#readme",
"devDependencies": {
"cross-fetch": "^3.0.6",
"flug": "^2.1.1"
}
}