forked from PAIR-code/federated-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "federated-learning-client",
"version": "0.0.5",
"description": "Experimental client library for federated learning in Tensorflow.js",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jsdelivr": "dist/bundle.js",
"unpkg": "dist/bundle.js",
"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": "tsc",
"build-npm": "./scripts/build-npm.sh",
"lint": "tslint -p . -t verbose"
},
"dependencies": {
"@tensorflow/tfjs": "~0.12",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.3",
"socket.io-client": "^2.1.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"browserify": "^16.2.3",
"clang-format": "~1.2.2",
"ts-node": "^7.0.0",
"tsify": "^4.0.0",
"tslint": "~5.10.0",
"typescript": "2.9.2",
"yalc": "^1.0.0-pre.22"
}
}