forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 885 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
{
"name": "@packages/socket",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"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 --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "cross-env NODE_ENV=test mocha --watch"
},
"dependencies": {
"socket.io": "2.3.0",
"socket.io-circular-parser": "cypress-io/socket.io-circular-parser#unpatched-has-binary-2",
"socket.io-client": "2.3.0"
},
"devDependencies": {
"chai": "3.5.0",
"cross-env": "6.0.3",
"mocha": "3.5.3",
"resolve-pkg": "2.0.0"
},
"files": [
"lib",
"patches"
],
"workspaces": {
"nohoist": [
"**"
]
}
}