-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "@nasriya/recaptcha",
"version": "1.0.0",
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/@types/main.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js",
"types": "./dist/@types/main.d.ts"
}
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"postbuild-init": "postbuild-init",
"test": "jest",
"deepTest": "jest --coverage"
},
"author": "Nasriya Software, LLC.",
"license": "Nasriya License",
"description": "Backend package for integrating Google reCAPTCHA to protect against bots and automated abuse.",
"keywords": [
"Google reCAPTCHA",
"reCAPTCHA",
"bot protection",
"anti-spam",
"security",
"user verification",
"backend"
],
"devDependencies": {
"@nasriya/postbuild": "^1.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"ts-jest": "^29.1.4",
"typescript": "^5.5.3"
},
"repository": {
"type": "github",
"url": "https://github.com/nasriyasoftware/reCAPTCHA"
},
"bugs": {
"url": "https://github.com/nasriyasoftware/reCAPTCHA/issues"
},
"homepage": "https://package.nasriya.net/reCAPTCHA"
}