-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.08 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
50
51
52
53
54
55
{
"name": "bytebuf",
"version": "1.2.0",
"author": "Ashcon Partovi <[email protected]>",
"description": "A byte buffer for encoding and decoding binary data.",
"type": "module",
"module": "dist/bytebuf.mjs",
"types": "dist/bytebuf.d.ts",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "https://github.com/Electroid/bytebuf"
},
"bugs": {
"url": "https://github.com/Electroid/bytebuf/issues"
},
"keywords": [
"bytebuffer",
"dataview",
"binary",
"buffer",
"arraybuffer",
"encode",
"decode",
"varint"
],
"license": "MIT",
"scripts": {
"build": "tsc && mv dist/bytebuf.js dist/bytebuf.mjs",
"prepublish": "npm run build",
"test": "ava"
},
"devDependencies": {
"ava": "^3.15.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"ava": {
"files": [
"*.test.ts"
],
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--no-warnings",
"--loader=ts-node/esm"
]
}
}