-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
65
66
67
68
{
"name": "spring-map-parser",
"version": "6.3.0",
"description": "Parse Spring map files into typed JS objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest"
},
"author": "Jazcash and others",
"license": "mit",
"repository": {
"type": "git",
"url": "git+https://github.com/beyond-all-reason/map-parser.git"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"**.test.ts"
]
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"dependencies": {
"7zip-bin": "5.1.1",
"decode-dxt": "^1.0.1",
"glob": "^7.1.6",
"jimp": "^0.22.7",
"luaparse": "^0.3.1",
"node-7z": "^3.0.0",
"node-stream-zip": "^1.15.0",
"parse-dds": "^1.2.1",
"tga": "^1.0.7"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.8",
"@types/glob": "^7.1.3",
"@types/jest": "^30",
"@types/jimp": "^0.2.28",
"@types/luaparse": "^0.2.7",
"@types/node-7z": "^2.1.0",
"@types/node": "^16",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"eslint": "^9.32.0",
"jaz-ts-utils": "^7.10.0",
"jest": "^30.0.5",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.54.0",
"typescript": "^5.9.2"
}
}