-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 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
{
"name": "yamux-js",
"version": "0.2.0",
"main": "lib/index",
"license": "MIT",
"repository": {
"url": "https://github.com/th-ch/yamux-js",
"type": "git"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"chai": "^4.5.0",
"mocha": "11.0.2",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf lib",
"format": "yarn prettier --write src",
"format:check": "yarn prettier --check src",
"prepare": "yarn format:check && yarn build",
"test": "mocha --require ts-node/register --color --recursive --extension ts",
"test:watch": "yarn test --watch"
},
"keywords": [
"yamux",
"hashicorp",
"multiplex",
"multiplexer",
"multiplexing",
"streams",
"typescript",
"javascript",
"interleave"
],
"files": [
"lib"
]
}