-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "mtgatool-metadata",
"version": "226.0.0",
"description": "A metadata generator for MTG Arena Tool",
"main": "out/metadata.js",
"scripts": {
"clean": "npm run clean:external && npm run clean:dist",
"clean:modules": "rimraf node_modules",
"clean:external": "rimraf external",
"clean:dist": "rimraf dist",
"clean:out": "rimraf output",
"start": "tsc && node --max-old-space-size=4096 dist/metadata.js",
"test": "tsc && node dist/setup.js && jest src/",
"jest": "jest src/",
"tsc": "tsc",
"dist": "tsc && node dist/dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manuel-777/MTG-Arena-Tool-Metadata.git"
},
"keywords": [
"MTG",
"Arena",
"database",
"card",
"events",
"mtgatool",
"magic the gathering"
],
"author": "Manuel Etchegaray",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/Manuel-777/MTG-Arena-Tool-Metadata/issues"
},
"homepage": "https://github.com/Manuel-777/MTG-Arena-Tool-Metadata#readme",
"dependencies": {
"better-sqlite3": "^7.6.2",
"gunzip-file": "^0.1.1",
"https": "^1.0.0",
"lodash": "^4.17.21",
"mtgatool-shared": "^2.0.1",
"request": "^2.88.2",
"scryfall-client": "^0.22.0",
"ssh2-sftp-client": "^9.0.4",
"strip-json-comments": "^5.0.0",
"xmlhttprequest-ts": "^1.0.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.2",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.186",
"@types/request": "^2.48.8",
"@types/ssh2-sftp-client": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}