forked from jpchip/giveaway-grabber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "giveaway-grabber",
"version": "2.7.1",
"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",
"prepublish": "npm run lint"
},
"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"
}
],
"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",
"dotenv": "~6.2.0",
"node-notifier": "~5.4.0",
"puppeteer": "~1.13.0",
"yargs": "~13.2.2"
},
"devDependencies": {
"eslint": "~5.15.2",
"eslint-config-prettier": "~4.1.0",
"eslint-plugin-prettier": "~3.0.1",
"jest": "~24.5.0",
"prettier": "~1.16.4"
}
}