-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "smpc-local-driver",
"version": "1.0.0",
"description": "Local driver SMPC framework",
"main": "client.js",
"scripts": {
"start": "nodemon --watch . --watch client.js --ignore ./datasets --ignore ./scripts --ignore ./requests",
"serve": "node client.js",
"lint": "standard"
},
"engines": {
"node": ">=8.9.0"
},
"author": {
"name": "Christos Nasikas",
"email": "[email protected]",
"url": "https://christosnasikas.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/Athena-MHMD/smpc-local-driver.git"
},
"homepage": "https://github.com/Athena-MHMD/smpc-local-driver.git",
"bugs": "https://github.com/Athena-MHMD/smpc-local-driver.git/issues",
"license": "MIT",
"standard": {
"ignore": []
},
"dependencies": {
"dotenv": "^6.2.0",
"level": "^4.0.0",
"standard": "^12.0.1",
"winston": "^3.2.1",
"ws": "^6.2.1"
},
"devDependencies": {
"nodemon": "^1.18.9",
"run.env": "^1.1.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
}
}