-
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.1.2",
"main": "lib/index",
"license": "MIT",
"repository": {
"url": "https://github.com/th-ch/yamux-js",
"type": "git"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^9.1.0",
"@types/node": "^14.11.8",
"chai": "^4.4.1",
"mocha": "^9.2.2",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"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"
]
}