-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.2 KB
/
package.json
File metadata and controls
59 lines (59 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
52
53
54
55
56
57
58
59
{
"name": "busybot",
"version": "1.2.0",
"description": "Impose non-parallelisable proof of work to slow down pesky bots.",
"type": "module",
"license": "Apache-2.0",
"files": [
"index.mjs",
"index.d.ts"
],
"directories": {
"test": "test"
},
"keywords": [
"pow",
"proof-of-work",
"captcha",
"anti-bot",
"timelock",
"time-lock",
"kctf",
"non-parallel",
"rate-limit",
"ratelimit",
"modular exponentiation",
"modular square root"
],
"module": "index.mjs",
"main": "index.mjs",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/autopulated/busybot.git"
},
"scripts": {
"test": "tap run",
"lint": "eslint -c eslint.config.mjs './{,!(node_modules)/**/}*.mjs'"
},
"tap": {
"show-full-coverage": true,
"allow-incomplete-coverage": true,
"coverage-report": [
"text",
"lcovonly"
],
"files": [
"test"
]
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"eslint": "^9.39.3",
"tap": "^21.6.2"
},
"bugs": {
"url": "https://github.com/autopulated/busybot/issues"
},
"homepage": "https://github.com/autopulated/busybot#readme"
}