-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 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
30
31
32
33
{
"name": "ha-socket-server",
"version": "0.0.1",
"main": "index.js",
"engines": {
"npm": "5.5.1",
"node": "8.7.0"
},
"scripts": {
"start": "node .",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha --require should ./test/",
"generate-coverage": "./node_modules/.bin/nyc report --reporter=lcov"
},
"dependencies": {
"dotenv": "^4.0.0",
"eslint": "^4.9.0",
"express": "^4.16.2",
"socket.io": "^2.0.3"
},
"devDependencies": {
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"should": "^13.1.2",
"socket.io-client": "^2.0.3"
},
"author": "Jean Rodrigues",
"license": "MIT"
}