-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@skgdev/socket.io-msgpack-javascript",
"type": "module",
"version": "1.2.1",
"description": "socket.io parser based on msgpack",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"dependencies": {
"@msgpack/msgpack": "2.8.0",
"component-emitter": "2.0.0",
"lodash": "^4.17.21"
},
"scripts": {
"build": "rimraf dist/* && pkgroll",
"prepare": "npm run build",
"test": "mocha test/parser.ts test/array-buffer.ts",
"coverage": "nyc mocha test && open coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git@+https://github.com/skgdev/socket.io-msgpack-javascript.git"
},
"author": "Nikolaos Margaritis",
"contributors": [
"Georgios Giatsidis"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/skgdev/socket.io-msgpack-javascript/issues"
},
"homepage": "https://github.com/skgdev/socket.io-msgpack-javascript#readme",
"files": [
"dist"
],
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/mocha": "^10.0.6",
"mocha": "10.4.0",
"nyc": "15.1.0",
"pkgroll": "^2.0.2",
"rimraf": "5.0.7",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"keywords": [
"socket.io",
"socket-io",
"msgpack",
"parser",
"msgpack-javascript"
],
"xo": {
"space": 4,
"rules": {
"capitalized-comments": "off",
"yoda": "off",
"no-constant-binary-expression": 2,
"object-curly-spacing": "off",
"@typescript-eslint/object-curly-spacing": "off",
"import/extensions": 0
},
"ignores": [
"dist"
]
}
}