-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 944 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
{
"name": "@morioh/is-bot",
"version": "1.1.2",
"description": "Detect user-agent is a bot/spider/crawler",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "rm -rf dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs --target es5",
"build:esm": "tsc -m esNext --outDir dist/esm --target es6",
"pub": "npm publish --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Morioh-Lab/is-bot.git"
},
"keywords": [
"bot",
"crawler",
"spider"
],
"author": "Morioh Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Morioh-Lab/is-bot/issues"
},
"homepage": "https://github.com/Morioh-Lab/is-bot#readme",
"devDependencies": {
"typescript": "^5.1.6"
}
}