-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "deathbycaptcha-lib",
"version": "4.7.1",
"description": "DeathByCaptcha API Clients",
"main": "./deathbycaptcha.js",
"exports": {
".": "./deathbycaptcha.js"
},
"files": [
"deathbycaptcha.js",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Use npm run test:integration\"",
"test:unit": "jest --runInBand",
"test:coverage": "jest --coverage --runInBand",
"test:integration": "npm run test:integration:api && npm run test:integration:selenium",
"test:integration:api": "node tests/integration/api.basic.integration.test.js",
"test:integration:npm": "node tests/integration/api.npm.integration.test.js",
"test:integration:selenium": "node tests/integration/selenium.integration.test.js"
},
"jest": {
"testMatch": [
"**/tests/unit/**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.gitlab-ci-local/"
],
"collectCoverageFrom": [
"deathbycaptcha.js"
],
"coverageThreshold": {
"global": {
"lines": 70,
"statements": 70,
"functions": 70
}
}
},
"author": "",
"license": "ISC",
"dependencies": {
"form-data": "^2.3.2"
},
"devDependencies": {
"jest": "^29.7.0",
"selenium-webdriver": "^4.41.0"
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deathbycaptcha/deathbycaptcha-api-client-nodejs.git"
},
"keywords": [],
"type": "commonjs",
"bugs": {
"url": "https://github.com/deathbycaptcha/deathbycaptcha-api-client-nodejs/issues"
},
"homepage": "https://github.com/deathbycaptcha/deathbycaptcha-api-client-nodejs#readme"
}