-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 731 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 731 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
{
"name": "srv",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"packageManager": "[email protected]",
"jest": {},
"scripts": {
"test": "jest --runInBand --no-watchman --coverage",
"coverage": "nyc --reporter=lcov --reporter=text yarn test",
"test-mocha": "mocha \"./lib-testmocha/**/*.test.js\" --recursive",
"test-mocha:watch": "mocha \"./lib-testmocha/**/*.test.js\" --recursive --watch"
},
"dependencies": {
"express": "^4.17.1",
"morgan": "^1.10.0",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0"
},
"devDependencies": {
"chai": "^4.3.4",
"jest": "^27.4.3",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"supertest": "^6.1.6"
}
}