-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 953 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
{
"name": "ponder",
"version": "1.0.0",
"description": "JavaScript tool that takes Magic: The Gathering Arena collection exports (CSV) and organizes them into a SQLite DB",
"main": "ponder.js",
"type": "module",
"scripts": {
"start": "node --no-warnings ./ponder.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DLvalentine/ponder.git"
},
"keywords": [
"magic-the-gathering",
"magic",
"gathering",
"mtg",
"arena",
"magic-the-gathering-arena",
"mtga",
"scryfall",
"mtgarenapro",
"sql",
"sqlite"
],
"author": "David L Valentine",
"license": "MIT",
"bugs": {
"url": "https://github.com/DLvalentine/ponder/issues"
},
"homepage": "https://github.com/DLvalentine/ponder#readme",
"dependencies": {
"csv-reader": "^1.0.12",
"scryfall-api": "^3.2.5",
"sqlite3": "^5.1.7"
}
}