-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.23 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
{
"name": "get-user-agent",
"version": "4.0.1",
"description": "Easily generate a User agent",
"main": "index.js",
"scripts": {
"test": "ava && tsd",
"lint": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fscherwi/get-user-agent.git"
},
"keywords": [
"useragent",
"user agent",
"user-agent",
"browser",
"firefox",
"chrome",
"opera",
"safari"
],
"author": "fscherwi",
"license": "MIT",
"bugs": {
"url": "https://github.com/fscherwi/get-user-agent/issues"
},
"homepage": "https://github.com/fscherwi/get-user-agent#readme",
"dependencies": {
"get-osx-version": "^3.0.0"
},
"devDependencies": {
"ava": "^5.2.0",
"eslint-plugin-jsdoc": "^43.1.1",
"tsd": "^0.28.1",
"ua-parser-js": "^1.0.35",
"xo": "^0.52.4"
},
"files": [
"README.md",
"LICENSE",
"index.js",
"sys-info.js",
"index.d.ts"
],
"types": "index.d.ts",
"xo": {
"extends": [
"plugin:jsdoc/recommended"
],
"rules": {
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"unicorn/prefer-module": 0,
"comma-dangle": 0
}
},
"engines": {
"node": ">=10"
}
}