-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 992 Bytes
/
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
{
"name": "captcha-solver-cli",
"version": "0.0.5",
"description": "CLI for automating CAPTCHA verification.",
"main": "index.js",
"repository": "transitive-bullshit/captcha-solver",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"bin": {
"captcha-solver": "index.js"
},
"scripts": {
"docs": "update-markdown-usage",
"test": "ava -v && standard"
},
"engines": {
"node": ">=4"
},
"keywords": [
"captcha",
"nocaptcha",
"recaptcha",
"recaptcha2",
"recaptchav2",
"funcaptcha",
"imagecaptcha",
"antigate",
"anticaptcha",
"anti-captcha",
"rucaptcha",
"verify",
"verification",
"solve",
"solver",
"bot"
],
"devDependencies": {
"ava": "^0.25.0",
"standard": "^11.0.0",
"update-markdown-usage": "^1.0.1"
},
"dependencies": {
"captcha-solver": "^0.0.6",
"commander": "^2.15.1",
"delay": "^2.0.0",
"node-compat-require": "^1.0.3"
}
}