pokemon-tcg-pocket-database 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cards.json +6811 -0
- package/package.json +23 -0
- package/sets.json +6 -0
package/package.json
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
{
|
2
|
+
"name": "pokemon-tcg-pocket-database",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Pokemon TCG Pocket complete cards and sets JSON database",
|
5
|
+
"files": [
|
6
|
+
"cards.json",
|
7
|
+
"sets.json"
|
8
|
+
],
|
9
|
+
"keywords": [
|
10
|
+
"pokemon",
|
11
|
+
"pokemon tcg",
|
12
|
+
"pokemon pocket",
|
13
|
+
"pokemon cards"
|
14
|
+
],
|
15
|
+
"author": "flibustier",
|
16
|
+
"license": "MIT",
|
17
|
+
"devDependencies": {
|
18
|
+
"cheerio": "1.0.0"
|
19
|
+
},
|
20
|
+
"scripts": {
|
21
|
+
"generate": "deno --allow-read --allow-write --allow-env ./scripts/create-db.js"
|
22
|
+
}
|
23
|
+
}
|