forked from beyond-all-reason/demo-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "sdfz-demo-parser",
"version": "5.9.1",
"description": "Parser for SpringRTS .sdfz demo files",
"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"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**.test.ts"
]
},
"author": "Jazcash",
"license": "unlicense",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Jazcash/sdfz-demo-parser.git"
},
"dependencies": {
"jaz-ts-utils": "^6.2.0",
"node-gzip": "^1.1.2"
},
"devDependencies": {
"@types/eslint": "^7.2.5",
"@types/jest": "^26.0.20",
"@types/node-gzip": "^1.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.6.2"
}
}