-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "@wecandobetter/binary-buffer",
"description": "Binary Buffer is a class that allows you to read and write binary data in a buffer.",
"version": "0.1.2",
"type": "module",
"license": "MIT",
"main": "dist/buffers.js",
"scripts": {
"build": "npm run build:ts && npm run build:browser",
"build:ts": "tsc -p tsconfig.build.json",
"build:browser": "node scripts/build-browser.js",
"test": "npm run build && jest",
"test:coverage": "npm run test -- --coverage",
"publish:npm": "npm run build:ts && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WeCanDoBetter/binary-buffer"
},
"author": {
"name": "We Can Do Better",
"email": "contact@wcdb.life",
"url": "https://wcdb.life"
},
"contributors": [
{
"name": "We Can Do Better",
"email": "michiel@wcdb.life",
"url": "https://michielvdvelde.nl"
}
],
"files": [
"dist",
"types"
],
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"esbuild": "^0.19.2",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}