-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.53 KB
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
{
"name": "@mann-conomy/tf-parser",
"version": "2.0.2",
"description": "A Node.js parser for converting Team Fortress 2 game files to JSON objects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"fix": "eslint -c eslint.config.js . --fix",
"lint": "eslint -c eslint.config.js .",
"prepublishOnly": "npm run build",
"build": "npm run clean && tsc",
"coverage": "jest --coverage",
"clean": "rimraf dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mann-Conomy/tf-parser.git"
},
"keywords": [
"nodejs",
"parser",
"json",
"typescript",
"localization",
"file",
"tf2",
"mann-conomy"
],
"author": "The Mann-Conomy Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mann-Conomy/tf-parser/issues"
},
"homepage": "https://github.com/Mann-Conomy/tf-parser#readme",
"devDependencies": {
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.7.0",
"@mann-conomy/tsconfig": "^1.1.0",
"@mann-conomy/typescript-eslint-config": "^1.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
},
"engines": {
"node": ">=6.17.1"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"@mann-conomy/vdf-utils": "^1.0.0"
}
}