-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
106 lines (106 loc) · 2.95 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@openmined/syft.js",
"version": "0.1.4",
"description": "A Javascript Syft worker in the browser",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.min.js",
"browserFull": "dist/index.js",
"files": [
"dist/*",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OpenMined/syft.js.git"
},
"keywords": [
"syft",
"pysyft",
"openmined",
"open",
"mined",
"deep",
"federated",
"federated learning",
"learning",
"private",
"javascript",
"machine",
"learning"
],
"author": "OpenMined",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OpenMined/syft.js/issues"
},
"homepage": "https://github.com/OpenMined/syft.js#readme",
"scripts": {
"start": "npm run lint && rollup -cw",
"build": "npm run lint && rollup -c",
"prepare": "npm run build",
"test": "npm run lint && jest --coverage",
"test:watch": "npm run lint && jest --watch",
"version": "auto-changelog -p && git add CHANGELOG.md",
"lint": "eslint .",
"doc": "documentation build --config documentation.yml src/syft.js src/syft-model.js src/job.js src/plan-trainer.js src/types/plan.js src/data/dataset.js src/data/data-loader.js --shallow -f md -o API-REFERENCE.md"
},
"browserslist": "> 0.25%, not dead",
"husky": {
"hooks": {
"pre-commit": "npm run doc && pretty-quick --staged"
}
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"**/src/**/*.js"
],
"setupFiles": [
"<rootDir>/jest-globals.js"
],
"globals": {
"window": {}
}
},
"dependencies": {},
"peerDependencies": {
"@tensorflow/tfjs-core": "^1.2.5"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@tensorflow/tfjs-core": "^1.7.4",
"auto-changelog": "^2.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"base64-arraybuffer": "^0.2.0",
"documentation": "^13.0.2",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fetch-mock": "^9.10.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"long": "^4.0.0",
"mock-socket": "^9.0.3",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"regenerator-runtime": "^0.13.6",
"rollup": "^2.22.2",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-terser": "7.0.2",
"syft-proto": "github:openmined/syft-proto#v0.4.9"
}
}