-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.69 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
{
"name": "spam-revenge",
"version": "1.0.0",
"private": false,
"description": "A Node.js + Puppeteer.js application to connect to a random proxy server and to subscribe email addresses to spam newsletters.",
"repository": {
"type": "git",
"url": "git://github.com/orassayag/spam-revenge.git"
},
"keywords": [
"spam",
"newsletter",
"newsletters",
"email",
"email address",
"email addresses",
"subscribe",
"proxy"
],
"license": "UNLICENSED",
"author": "Or Assayag <[email protected]>",
"contributors": [
{
"name": "Or Assayag",
"email": "[email protected]",
"url": "https://github.com/orassayag"
}
],
"main": "src/scripts/subscribe.script.js",
"files": [
"src",
".eslintignore",
".eslintrc",
".gitignore",
".jsbeautifyrc",
".npmignore",
"INSTRUCTIONS.md",
"package-lock.json",
"package.json",
"README.md"
],
"scripts": {
"backup": "node src/scripts/backup.script.js",
"start": "node src/scripts/subscribe.script.js",
"sand": "node src/tests/sandBox.test.js",
"postinstall": "node src/scripts/initiate.script.js",
"stop": "taskkill -f -im node.exe"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"fs-extra": "^11.3.0",
"ip-regex": "^5.0.0",
"is-reachable": "^5.2.1",
"log-update": "^6.1.0",
"lorem-ipsum": "^2.0.8",
"proxy-lists": "^1.23.3",
"puppeteer": "^24.1.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"random-useragent": "^0.5.0",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"eslint": "^9.18.0"
}
}