-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "buffer.ws",
"version": "1.0.15",
"description": "A simple, light and fast bytebuffer implementation under node.js ",
"main": "dist/BufferWS.js",
"types": "dist/BufferWS.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"build": "rm -rf dist && tsc"
},
"keywords": [
"nodejs",
"typescript",
"javascript",
"buffer",
"websocket",
"arraybuffer",
"bytebuffer"
],
"author": "Mathis HOUIS",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/kozennnn/buffer.ws.git"
},
"bugs": {
"url": "https://github.com/kozennnn/buffer.ws/issues"
},
"homepage": "https://github.com/kozennnn/buffer.ws#readme",
"files": [
"/dist"
],
"dependencies": {
"buffer": "^6.0.3"
}
}