-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "the-three-game",
"version": "1.0.0",
"description": "Socket Real Time Game",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha -b -R spec specs/**/*.spec.js --exit",
"coverage": "nyc mocha -b -R spec specs/**/*.spec.js --exit",
"lint": "eslint -c .eslintrc.js \"**/*.js\"",
"start-dev": "nodemon -r dotenv/config index.js"
},
"keywords": [
"socket",
"real-time",
"nodejs"
],
"author": "Abner Tellez",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"http-status": "^1.3.2",
"socket.io": "^2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^8.1.0",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js",
"src/API/sockets/game.js",
"src/API/server.js",
"public/**/*.js"
],
"all": true
}
}