-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "mlg-converter",
"version": "0.9.0",
"license": "MIT",
"description": "MLG log files converter",
"author": "Piotr Rogowski <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/karniv00l/mlg-converter"
},
"keywords": [
"efi-analytics",
"tunerstudio",
"megalogviewer",
"mlg",
"mlvlg",
"virtual-dyno",
"csv",
"megasquirt",
"parsing",
"speeduino",
"cli",
"json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mlg-converter": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "tsc --watch",
"lint": "tsc && eslint --max-warnings=0 .",
"test": "node test/test.js"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-prettier": "^4.2.1",
"typescript": "^4.8.4"
}
}