forked from PAIR-code/federated-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "federated-learning-server",
"version": "0.0.5",
"description": "Experimental server library for federated learning in Tensorflow.js",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/PAIR-code/federated-learning.git"
},
"license": "Apache-2.0",
"scripts": {
"publish-local": "rm -rf dist/ && yarn && yarn build && yalc publish",
"build-npm": "rm -rf dist/ && yarn && yarn build && npm pack",
"build": "tsc",
"lint": "tslint -p . -t verbose"
},
"dependencies": {
"@tensorflow/tfjs": "~0.12",
"@tensorflow/tfjs-node": "^0.1.9",
"@types/node-fetch": "^2.1.1",
"@types/socket.io": "^1.4.34",
"es6-promise": "^4.2.4",
"node-fetch": "^2.1.2",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/node": "^10.5.7",
"@types/rimraf": "^2.0.2",
"@types/seedrandom": "~2.4.27",
"clang-format": "~1.2.2",
"rimraf": "^2.6.2",
"ts-node": "^6.1.0",
"ts-node-dev": "^1.0.0-pre.26",
"tslint": "~5.8.0",
"typescript": "2.9.2",
"yalc": "^1.0.0-pre.22"
}
}