-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "spring-map-parser",
"version": "6.1.1",
"description": "Parse Spring map files into typed JS objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "jest"
},
"author": "Jazcash",
"license": "mit",
"repository": {
"type": "git",
"url": "https://github.com/Jazcash/spring-map-parser.git"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**.test.ts"
]
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"dependencies": {
"7zip-bin": "5.1.1",
"decode-dxt": "^1.0.1",
"glob": "^7.1.6",
"jaz-ts-utils": "^6.0.0",
"jimp": "^0.22.7",
"luaparse": "^0.3.1",
"node-7z": "^3.0.0",
"node-stream-zip": "^1.13.0",
"parse-dds": "^1.2.1",
"tga": "^1.0.7"
},
"devDependencies": {
"@types/eslint": "^7.2.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/jimp": "^0.2.28",
"@types/luaparse": "^0.2.7",
"@types/node-7z": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-unused-imports": "^1.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}