-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 KB
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
{
"name": "capsolver-nodejs",
"version": "1.0.0",
"description": "Official Node.js SDK for Capsolver API - Multi-captcha solving service supporting reCAPTCHA, GeeTest, Cloudflare and more",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "echo 'No linter configured yet'",
"example": "node examples/simple_test_runner.js",
"prepublishOnly": "npm test"
},
"keywords": [
"capsolver",
"captcha",
"recaptcha",
"geetest",
"cloudflare",
"turnstile",
"mtcaptcha",
"datadome",
"imperva",
"akamai",
"aws-waf",
"image-to-text",
"captcha-solver",
"anti-bot"
],
"author": "Capsolver",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/capsolver/capsolver-nodejs.git"
},
"bugs": {
"url": "https://github.com/capsolver/capsolver-nodejs/issues"
},
"homepage": "https://github.com/capsolver/capsolver-nodejs#readme",
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"jest": "^29.7.0",
"@jest/globals": "^29.7.0",
"dotenv": "^16.3.1"
},
"engines": {
"node": ">=14.0.0"
}
}