-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
65 lines (65 loc) · 1.91 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": "es6-crawler-detect",
"version": "4.0.1",
"description": "This is an ES6 adaptation of the original PHP library CrawlerDetect, this library will help you detect bots/crawlers/spiders vie the useragent.",
"main": "dist/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "mocha",
"lint": "eslint --fix ./src ./test",
"npm:minor": "npm version minor",
"npm:major": "npm version major",
"npm:patch": "npm version patch",
"npm:publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JefferyHus/es6-crawler-detect.git"
},
"keywords": [
"es6-javascript",
"crawler",
"bots",
"spider",
"detection"
],
"author": "Jeffery Hussin <jefferytutorials@gmail.com> (http://github.com/jefferyhus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/JefferyHus/es6-crawler-detect/issues"
},
"homepage": "https://github.com/JefferyHus/es6-crawler-detect#readme",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.4",
"@types/chai": "^4.3.19",
"@types/express-serve-static-core": "^4.19.5",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"babel-loader": "^9.2.1",
"chai": "^5.1.1",
"core-js": "^3.38.1",
"cross-env": "^7.0.3",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"types": "dist/index.d.ts"
}