-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"name": "socket.io-msgpack-parser",
"version": "3.0.2",
"description": "socket.io parser based on msgpack",
"main": "index",
"types": "./index.d.ts",
"dependencies": {
"component-emitter": "~1.3.0",
"notepack.io": "~2.2.0"
},
"devDependencies": {
"expect.js": "0.3.1",
"mocha": "^10.1.0",
"prettier": "^2.1.2",
"socket.io": "^4.0.1",
"socket.io-client": "^4.0.1"
},
"scripts": {
"format:check": "prettier --check 'index.js' 'test/**/*.js'",
"format:fix": "prettier --write 'index.js' 'test/**/*.js'",
"test": "npm run format:check && mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socketio/socket.io-msgpack-parser.git"
},
"author": "Damien Arrachequesne",
"license": "MIT",
"bugs": {
"url": "https://github.com/socketio/socket.io-msgpack-parser/issues"
},
"homepage": "https://github.com/socketio/socket.io-msgpack-parser#readme",
"files": [
"index.js",
"index.d.ts"
]
}