forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 859 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 859 Bytes
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
{
"name": "@packages/socket",
"version": "0.0.0",
"private": true,
"main": "index.js",
"browser": "./lib/client.js",
"scripts": {
"pretest": "npm run check-deps-pre",
"test": "cross-env NODE_ENV=test bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"pretest-watch": "npm run check-deps-pre",
"test-watch": "cross-env NODE_ENV=test bin-up mocha --watch",
"clean-deps": "rm -rf node_modules",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript"
},
"files": [
"lib"
],
"dependencies": {
"socket.io": "1.7.4",
"socket.io-client": "1.7.4"
},
"devDependencies": {
"@cypress/releaser": "0.1.12",
"bin-up": "^1.1.0",
"chai": "^3.5.0",
"cross-env": "^5.0.5"
}
}