-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 KB
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
{
"name": "@tetherto/miningos-wrk-container-microbt",
"version": "0.0.1",
"description": "MiningOS Worker Container MicroBT",
"keywords": [
"tether"
],
"author": "Tether",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tetherto/miningos-wrk-container-microbt.git"
},
"homepage": "https://github.com/tetherto/miningos-wrk-container-microbt#readme",
"bugs": {
"url": "https://github.com/tetherto/miningos-wrk-container-microbt/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"worker.js",
"workers/",
"mock/"
],
"main": "worker.js",
"type": "commonjs",
"bin": {
"miningos-wrk-container-microbt": "worker.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit && npm run test:integration",
"test:integration": "NODE_ENV=test brittle ./tests/container.test.js",
"test:unit": "NODE_ENV=test brittle tests/unit/*.js",
"test:coverage": "brittle --coverage tests/{,**/}*.test.js"
},
"dependencies": {
"@bitfinex/bfx-svc-boot-js": "1.2.0",
"@bitfinex/lib-js-util-promise": "git+https://github.com/bitfinexcom/lib-js-util-promise.git",
"async": "3.2.6",
"debug": "4.4.1",
"@tetherto/miningos-tpl-wrk-container": "git+https://github.com/tetherto/miningos-tpl-wrk-container.git",
"@tetherto/svc-facs-modbus": "git+https://github.com/tetherto/svc-facs-modbus.git"
},
"devDependencies": {
"brittle": "3.16.3",
"modbus-stream": "0.46.0",
"standard": "17.1.2",
"@tetherto/miningos-mock-control-service": "git+https://github.com/tetherto/miningos-mock-control-service.git"
},
"overrides": {
"serialport": "npm:noop@1.0.0"
}
}