-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
60
61
62
63
64
65
{
"name": "@tinyhttp/bot-detector",
"version": "2.0.0",
"type": "module",
"description": "Detect bots among users in your tinyhttp app.",
"homepage": "https://tinyhttp.v1rtl.site",
"funding": {
"type": "individual",
"url": "https://github.com/tinyhttp/tinyhttp?sponsor=1"
},
"repository": {
"type": "git",
"url": "https://github.com/tinyhttp/bot-detector.git"
},
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"tinyhttp",
"node.js",
"web framework",
"web",
"backend",
"bot-detector",
"bot",
"antispam",
"bot-detect",
"antibot",
"security"
],
"engines": {
"node": ">=14.21.3"
},
"author": "v1rtl",
"license": "MIT",
"dependencies": {
"isbot": "^4.1.1"
},
"scripts": {
"build": "rollup -c",
"test": "uvu -r tsm",
"test:coverage": "c8 --include=src pnpm test",
"test:report": "c8 report --reporter=text-lcov > coverage.lcov",
"lint": "eslint . --ext=ts",
"format": "prettier --check \"./**/*.ts\""
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"c8": "^7.13.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"rollup": "^3.23.0",
"supertest-fetch": "^1.5.0",
"tsm": "^2.3.0",
"typescript": "^5.0.4",
"uvu": "^0.5.6"
}
}