-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "browserslist-useragent",
"version": "4.0.0",
"description": "A utility to match a browselist query to browser user agents",
"main": "lib/index.js",
"repository": "https://github.com/pastelsky/browserslist-useragent",
"author": "Shubham Kanodia <[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"files": [
"./lib/index.js",
"./lib/index.d.ts",
"tsconfig.json"
],
"engines": {
"node": ">= 6.x.x"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"prepublish": "yarn run build",
"build": "mkdir -p lib && tsc"
},
"dependencies": {
"semver": "^7.3.5",
"ua-parser-js": "^1.0.32"
},
"peerDependencies": {
"browserslist": "^4.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.1.2",
"@types/node": "^18.11.0",
"@types/semver": "^7.3.12",
"@types/ua-parser-js": "^0.7.36",
"@types/useragent": "^2.3.1",
"babel-cli": "^6.26.0",
"browserslist": "^4.19.1",
"jest": "^29.2.0",
"prettier": "^2.5.1",
"typescript": "^4.8.4",
"useragent-generator": "^1.1.1-amkt-22079-finish.0"
}
}