-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 783 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 783 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
34
35
36
{
"name": "controk-socket",
"version": "0.2.0",
"author": {
"name": "Jourdan Rodrigues",
"email": "thiagojourdan@gmail.com"
},
"contributors": [
{
"name": "Joseph Rodrigues",
"email": "joseph.netrc@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jourdanrodrigues/controk-socket"
},
"dependencies": {
"dotenv": "^2.0.0",
"express": "^4.14.0",
"pg": "^6.1.0",
"sequelize": "^3.24.6",
"socket.io": "^1.5.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"should": "^11.1.1",
"socket.io-client": "^1.5.1"
},
"scripts": {
"start": "node index.js",
"test": "istanbul cover --include-all-sources index.js -- test"
}
}