-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "snakepit",
"version": "0.0.1",
"description": "Machine learning job scheduler",
"bin": {
"pit": "src/service.js"
},
"scripts": {
"start": "node src/service.js",
"postinstall": "node node_modules/pegjs/bin/pegjs src/clusterParser.pegjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/snakepit.git"
},
"keywords": [
"machine",
"learning",
"job",
"scheduler",
"daemon",
"cli",
"cuda",
"gpu",
"cluster",
"worker",
"node",
"js"
],
"author": "Tilman Kamp",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/snakepit/issues"
},
"homepage": "https://github.com/mozilla/snakepit#readme",
"dependencies": {
"assign-deep": "^1.0.1",
"async": "^2.6.1",
"async-parallel": "^1.2.3",
"axios": "^0.18.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"buffer-serializer": "^1.1.0",
"commander": "^2.14.1",
"express": "^4.16.2",
"express-promise-router": "^3.0.3",
"fs-extra": "^7.0.1",
"js-yaml": "^3.12.0",
"jsonwebtoken": "^8.2.2",
"morgan": "^1.9.0",
"multi-integer-range": "^4.0.4",
"parse-duration": "^0.1.1",
"pegjs": "^0.10.0",
"pg": "^7.7.1",
"range-parser": "^1.2.0",
"sequelize": ">=5.3.0",
"tail": "^2.0.2",
"uuid": "^8.3.0",
"ws": "^6.2.0"
}
}