-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 956 Bytes
/
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
{
"name": "ponder",
"version": "1.0.0",
"description": "Optimize Edh Decks",
"main": "index.js",
"scripts": {
"lint": "node node_modules/eslint/bin/eslint.js --ignore-path .gitignore '**/*.js'",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"opt": "node index.js"
},
"repository": {
"type": "git",
"url": "ponder"
},
"keywords": [
"mtg",
"edh",
"commander"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"javascript-lp-solver": "^0.4.24",
"jszip": "^3.8.0",
"progress": "^2.0.3",
"stream-chain": "^2.2.4",
"stream-fork": "^1.0.5",
"stream-json": "^1.7.2",
"unzip-stream": "^0.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^29.7.0"
}
}