forked from alevoska/logstf-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "logstf-parser",
"version": "1.4.0",
"description": "TF2 log parser",
"main": "./lib/cjs/LogParser.js",
"module": "./lib/esm/LogParser.js",
"exports": {
"import": "./lib/esm/LogParser.js",
"require": "./lib/cjs/LogParser.js"
},
"scripts": {
"buildcjs": "tsc --project tsconfig.cjs.json",
"buildesm": "tsc",
"build": "tsc && tsc --project tsconfig.cjs.json",
"test": "jest",
"test:cov": "jest --coverage",
"test:ci": "jest --ci --maxWorkers 4",
"benchmark": "node ./src/scripts/benchmark.js",
"updateTests": "node ./src/scripts/update_tests.js"
},
"keywords": [
"logs.tf",
"tf2"
],
"repository": {
"type": "git",
"url": "https://github.com/TheBv/logstf-parser.git"
},
"files": [
"lib/"
],
"author": "zoob",
"maintainers": [
"Bv"
],
"license": "AGPL",
"dependencies": {
"steamid": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.5",
"@types/node": "^18.0.4",
"@types/steamid": "^2.0.0",
"axios": "^0.27.2",
"jest": "^28.1.3",
"jszip": "^3.10.0",
"ts-jest": "^28.0.6",
"typescript": "^4.7.4"
}
}