-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.29 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
{
"name": "ac-remote-telemetry-client",
"version": "0.1.0",
"description": "A Node UDP client and telemetry parser for Assetto Corsa",
"main": "lib/index.js",
"babel": {
"presets": [
"es2015"
]
},
"files": [
"/lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/rickwest/ac-remote-telemetry-client.git"
},
"keywords": [
"assetto corsa",
"ac",
"acc",
"automotive",
"kunos simulazioni",
"udp",
"telemetry",
"racing",
"simracing",
"gaming",
"xbox",
"xbox one",
"ps4",
"playstation",
"playstation 4",
"esports",
"e sports",
"e-sports",
"videogame"
],
"author": "Rick West",
"license": "MIT",
"bugs": {
"url": "https://github.com/rickwest/ac-remote-telemetry-client/issues"
},
"homepage": "https://github.com/rickwest/ac-remote-telemetry-client#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2"
},
"dependencies": {
"binary-parser": "^1.6.2"
}
}