This repository was archived by the owner on Oct 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "mtgify",
"version": "1.0.0",
"description": "assorted tools for MTG apps",
"main": "index.js",
"scripts": {
"cors-get": "gsutil cors get gs://mtgify.org",
"cors-set": "gsutil cors set gcp-cors.json gs://mtgify.org",
"json-scrape": "node script/scrape.js",
"json-gen": "node script/gen_json.js",
"json-upload": "node script/upload_json.js && node script/upload_version.js",
"cron-json": "npm run json-scrape && npm run json-gen && npm run json-upload",
"cron-code": "npm run build && node script/upload_code.js",
"ci": "jest --watch",
"test": "jest",
"build": "rm dist/*.js && browserify lib/index.js -t babelify -p tinyify > dist/autocard.js",
"watch": "watchify lib/index.js -t babelify -o build/autocard.js --debug --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpaulweeks/mtgify.git"
},
"author": "mpaulweeks",
"license": "ISC",
"bugs": {
"url": "https://github.com/mpaulweeks/mtgify/issues"
},
"homepage": "https://github.com/mpaulweeks/mtgify#readme",
"engines": {
"node": "10.16.0",
"npm": "6.9.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-stage-2": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.5.0",
"jest": "^26.1.0",
"tinyify": "^2.5.2",
"watchify": "^3.11.1"
},
"dependencies": {
"@google-cloud/storage": "^5.1.2",
"JSONStream": "^1.3.5",
"event-stream": "^4.0.1",
"natives": "^1.1.6",
"node-fetch": "^2.6.1",
"unzip": "^0.1.11"
},
"babel": {
"presets": [
"stage-2"
]
}
}