-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "@packages/socket",
"version": "0.0.0-development",
"private": true,
"browser": "lib/browser.ts",
"scripts": {
"build-prod": "tsc || echo 'built, with type errors' && rm lib/browser.js",
"check-ts": "tsc --noEmit && yarn -s tslint",
"clean": "rimraf lib/*.js",
"clean-deps": "rimraf node_modules",
"postinstall": "patch-package",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "cross-env NODE_ENV=test mocha -r @packages/ts/register --watch",
"tslint": "tslint --config ../ts/tslint.json --project ."
},
"dependencies": {
"engine.io": "6.4.2",
"engine.io-parser": "4.0.2",
"flatted": "3.2.9",
"socket.io": "4.0.1",
"socket.io-client": "4.0.1",
"uuid": "8.3.2"
},
"devDependencies": {
"@packages/types": "0.0.0-development",
"@types/uuid": "8.3.2",
"chai": "3.5.0",
"cross-env": "6.0.3",
"devtools-protocol": "0.0.1346313",
"mocha": "3.5.3",
"resolve-pkg": "2.0.0"
},
"files": [
"index.js",
"lib",
"patches"
],
"types": "lib/socket.ts",
"workspaces": {
"nohoist": [
"devtools-protocol",
"engine.io",
"engine.io-parser",
"socket.io",
"socket.io/socket.io-parser",
"socket.io-client",
"socket.io-client/socket.io-parser"
]
},
"nx": {}
}