-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "ts-ritofile",
"version": "2.0.0-beta.1",
"description": "Experimental TypeScript library for reading and writing League of Legends game file formats (port of pyritofile)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:performance": "jest --testPathPattern=performance-regression",
"test:validation": "jest --testPathPattern=byte-identical-validation",
"test:compatibility": "jest --testPathPattern=backward-compatibility",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"league-of-legends",
"riot-games",
"game-files",
"binary-parser",
"skl",
"skn",
"anm",
"bin",
"wad"
],
"author": "SirDexal",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.19.19",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts"
]
},
"dependencies": {
"js-xxhash": "^4.0.0",
"pako": "^2.1.0",
"xxhash-wasm": "^1.1.0",
"zstd-napi": "^0.0.12"
}
}