-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1004 Bytes
/
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
{
"name": "log-parser",
"version": "1.0.0",
"description": "Log Parser",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "~16",
"@types/sinon": "^10.0.12",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"chai": "^4.3.6",
"esbuild": "^0.14.48",
"esbuild-node-externals": "^1.4.1",
"eslint": "~8.16",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"ts-node": "^10.8.1",
"tslib": "~2.4",
"tsutils": "~3.21",
"typescript": "~4.7"
},
"scripts": {
"start": "node parser.js --input logs/app.log --output errors.json",
"build": "node esbuild.config.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "mocha --require ts-node/register test/**/*Test.ts"
},
"author": "Alex Ytac",
"dependencies": {
"@types/commander": "^2.12.2",
"commander": "^9.3.0"
}
}