-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) Β· 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) Β· 2.07 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "isbot",
"version": "5.1.37",
"description": "π€/π¨βπ¦° Recognise bots/crawlers/spiders using the user agent string.",
"keywords": [
"bot",
"crawlers",
"spiders",
"googlebot",
"useragent",
"user agent parsing",
"π€"
],
"license": "Unlicense",
"homepage": "https://isbot.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/omrilotan/isbot.git"
},
"engines": {
"node": ">=18"
},
"files": [
"./index*",
"./AUTHORS"
],
"type": "commonjs",
"main": "./index.js",
"module": "./index.mjs",
"browser": "./index.mjs",
"jsdelivr": "./browser.global.js",
"exports": {
"./package.json": "./package.json",
".": {
"browser": {
"import": "./index.mjs",
"require": "./index.js"
},
"node": {
"import": "./index.mjs",
"require": "./index.js"
},
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
}
},
"sideEffects": false,
"types": "index.d.ts",
"scripts": {
"prepare": "./scripts/prepare/index.js",
"build": "./scripts/build/procedure.sh",
"format": "./scripts/format/procedure.sh",
"test": "./scripts/test/procedure.sh",
"prepublishOnly": "./scripts/prepublish/procedure.sh",
"prestart": "npm ls parcel-bundler --depth=0 >/dev/null 2>&1 || npm i parcel-bundler --no-save",
"start": "npx --no-install parcel-bundler page/index.pug --out-dir docs",
"prepage": "npm ls parcel-bundler --depth=0 >/dev/null 2>&1 || npm i parcel-bundler --no-save",
"page": "npx --no-install parcel-bundler build page/index.pug --out-dir docs --public-url ./",
"maintenance": "npm update && npm run prepare -- --force && npm run format && npm t"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.0.2",
"prettier": "^3.6.0",
"pug": "^3.0.3",
"stdline": "^2.1.0",
"ts-jest": "^29.4.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"user-agents": "^2.1.4",
"yaml": "^2.8.0"
},
"overrides": {
"typescript": "^6.0.2"
}
}