-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
66
67
{
"name": "ncaptcha-api",
"version": "2.0.0",
"description": "Modern captcha generator and verifier for Node.js APIs",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist/src",
"README.md",
"changelog.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.13.0",
"scripts": {
"clean": "rm -rf dist coverage .nyc_output",
"build": "tsc -p tsconfig.json",
"test": "yarn build && node --test dist/test/*.test.js",
"coverage": "yarn build && c8 --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 --reporter=text --reporter=lcov node --test dist/test/*.test.js",
"lint": "eslint src test --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-Vedas/ncaptcha.git"
},
"keywords": [
"captcha",
"nodejs",
"security",
"api"
],
"author": "Nitesh Purohit <nitesh.purohit.it@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Code-Vedas/ncaptcha/issues"
},
"homepage": "https://github.com/Code-Vedas/ncaptcha#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Code-Vedas"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"canvas": "^3.2.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.2",
"c8": "^11.0.0",
"eslint": "^10.2.0",
"globals": "^17.4.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
}
}