-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
80 lines (79 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "f1-2021-udp",
"version": "1.15.989",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/raweceek-temeletry/f1-2021-udp"
},
"dependencies": {
"binary-parser": "2.1.0"
},
"devDependencies": {
"@types/binary-parser": "1.5.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"eslint": "7.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.1.0",
"gts": "^3.1.0",
"husky": "^7.0.2",
"lint-staged": "11.2.6",
"typescript": "^4.7.3",
"uglify-js": "^3.16.1"
},
"bin": {
"forward": "bin/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"start": "npm run build && node build/dev/index.js",
"build": "tsc",
"build-prod": "tsc && npm run uglify",
"build:link": "npm run build && npm link",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile && husky install",
"pretest": "npm run compile",
"posttest": "npm run lint",
"lint": "gts lint",
"uglify": "uglifyjs build/src/index.js -o build/src/index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint && gts fix && npm run build-prod"
}
},
"lint-staged": {
"*.ts": [
"gts fix",
"git add"
]
},
"keywords": [
"codemasters",
"f1 2021",
"udp",
"telemetry",
"parser",
"e-sports",
"racing",
"PlayStation",
"xbox",
"PC"
],
"engines": {
"node": ">=12"
}
}