-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "trucksim-telemetry",
"version": "0.21.0",
"description": "Telemetry data from the scs-sdk-plugin",
"main": "lib/index.js",
"types": "./typings/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "npx jest",
"test-ts": "node ./ts-tests/generateData.js && npx ts-node ./ts-tests/index.test.ts",
"lint": "npx eslint ."
},
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/kniffen/TruckSim-Telemetry.git"
},
"keywords": [
"ats",
"ets2",
"scs",
"trucksim",
"telemetry",
"game"
],
"author": "Kniffen",
"license": "MIT",
"bugs": {
"url": "https://github.com/kniffen/TruckSim-Telemetry/issues"
},
"homepage": "https://github.com/kniffen/TruckSim-Telemetry#readme",
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"struct-fu": "^1.2.1"
},
"devDependencies": {
"@types/node": "^15.6.1",
"eslint": "^8.37.0",
"jest": "^29.3.1",
"node-gyp": "^9.4.1",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}