forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "@packages/socket",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"browser": "lib/browser.ts",
"scripts": {
"build-prod": "tsc",
"clean-deps": "rm -rf node_modules",
"postinstall": "patch-package",
"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"
},
"dependencies": {
"circular-json": "0.5.9",
"socket.io": "4.0.1",
"socket.io-client": "4.0.1"
},
"devDependencies": {
"chai": "3.5.0",
"cross-env": "6.0.3",
"mocha": "3.5.3",
"resolve-pkg": "2.0.0"
},
"files": [
"lib",
"patches"
],
"workspaces": {
"nohoist": [
"socket.io",
"socket.io/socket.io-parser",
"socket.io-client",
"socket.io-client/socket.io-parser"
]
}
}