-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 872 Bytes
/
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
{
"name": "spider-detector",
"version": "2.1.0",
"description": "A tiny node module to detect spiders/crawlers quickly and comes with optional middleware for ExpressJS",
"main": "index.js",
"author": {
"name": "Michael Heuberger",
"email": "[email protected]",
"url": "https://binarykitchen.com"
},
"repository": {
"type": "git",
"url": "[email protected]:binarykitchen/spider-detector.git"
},
"readmeFilename": "README.md",
"scripts": {
"test": "tape test/*.js"
},
"engines": {
"node": ">=8.15.0",
"npm": ">=6.9.0",
"yarn": ">=1.17.3"
},
"keywords": [
"crawler",
"detector",
"spider",
"bot",
"middleware",
"single page app",
"expressjs"
],
"license": "MIT",
"devDependencies": {
"express": "4.18.2",
"superagent": "5.1.0",
"tape": "4.11.0"
}
}