-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
76 lines (76 loc) · 1.71 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
74
75
76
{
"name": "giveaway-grabber",
"version": "4.3.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.4.0",
"inquirer": "~6.5.0",
"node-notifier": "~5.4.0",
"puppeteer": "~1.18.1",
"sqlite3": "~4.0.9",
"tesseract.js": "~1.0.19",
"yargs": "~13.3.0"
},
"devDependencies": {
"eslint": "~6.0.1",
"eslint-config-node": "~4.0.0",
"eslint-config-prettier": "~6.0.0",
"eslint-plugin-jest": "~22.8.0",
"eslint-plugin-prettier": "~3.1.0",
"find-up": "~4.1.0",
"jest": "~24.8.0",
"prettier": "~1.18.2",
"rewire": "~4.0.1"
}
}