-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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": "@timing71/cli",
"version": "0.1.0",
"description": "Timing71 CLI",
"main": "src/index.js",
"repository": "https://github.com/timing71/cli",
"author": "James Muscat <[email protected]>",
"license": "AGPL-3.0-or-later",
"private": false,
"type": "module",
"homepage": "https://www.timing71.org/",
"bin": {
"timing71": "NODE_EXTRA_CA_CERTS=certs/additionalCerts.pem bin/timing71.js"
},
"dependencies": {
"@timing71/common": "^0.4.0",
"archiver": "^5.3.1",
"cli-progress": "^3.11.2",
"commander": "^10.0.0",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"eventsource": "^2.0.2",
"jsdom": "^21.1.0",
"node-stream-zip": "^1.15.0",
"reconnecting-eventsource": "^1.6.2",
"reconnecting-websocket": "^4.4.0",
"uuid": "^9.0.0",
"web-streams-polyfill": "^3.2.1",
"winston": "^3.8.2",
"ws": "^8.12.0"
},
"optionalDependencies": {
"@timing71/services": "^0.9.0"
},
"scripts": {
"t71": "NODE_EXTRA_CA_CERTS=certs/additionalCerts.pem bin/timing71.js"
}
}