1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21{
"name": "hardware",
"version": "1.0.0",
"description": "",
"main": "test.js",
"dependencies": {
"fastcall": "^0.2.6",
"jest": "^26.5.3",
"random-int": "^2.0.1",
"segfault-handler": "^1.3.0"
},
"scripts": {
"test": "npm run all",
"all": "jest --noStackTrace --testPathPattern tests/ --maxWorkers 14",
"unit": "jest --noStackTrace --testPathPattern tests/unit/ --maxWorkers 8",
"integration": "jest --noStackTrace --testPathPattern tests/integration/ --maxWorkers 6"
},
"author": "",
"license": "GPL-3.0"
}