forked from jpchip/giveaway-grabber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.61 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
67
68
69
70
71
72
73
{
"name": "giveaway-grabber",
"version": "4.2.0",
"description": "Automates entries for Amazon Giveaways",
"preferGlobal": true,
"main": "index.js",
"scripts": {
"test": "jest",
"prestart": "npm install --production",
"start": "node index.js",
"lint": "eslint --fix .",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=10.0.0"
},
"bin": {
"gg": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpchip/giveaway-grabber.git"
},
"keywords": [
"amazon",
"giveaways"
],
"author": "Jared Chapiewsky",
"contributors": [
{
"name": "birdlavv",
"url": "https://github.com/birdlavv"
},
{
"name": "KryptoNova",
"url": "https://github.com/KryptoNova"
},
{
"name": "cheezwiz789",
"url": "https://github.com/cheezwiz789"
},
{
"name": "Michele Fattoruso",
"url": "https://github.com/mfattoru"
},
{
"name": "Stefano",
"url": "https://github.com/rinoma"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jpchip/giveaway-grabber/issues"
},
"homepage": "https://github.com/jpchip/giveaway-grabber#readme",
"dependencies": {
"@sendgrid/mail": "~6.3.1",
"inquirer": "~6.2.2",
"node-notifier": "~5.4.0",
"puppeteer": "~1.17.0",
"tesseract.js": "~1.0.19",
"sqlite3": "~4.0.6",
"yargs": "~13.2.2"
},
"devDependencies": {
"eslint": "~5.15.2",
"eslint-config-prettier": "~4.1.0",
"eslint-plugin-prettier": "~3.0.1",
"find-up": "~3.0.0",
"jest": "~24.5.0",
"prettier": "~1.16.4"
}
}