forked from 3rd-Eden/useragent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.16 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
{
"name": "appx-useragent",
"version": "2.3.5",
"description": "Fastest, most accurate & effecient user agent string parser, uses Browserscope's research for parsing",
"author": "Arnout Kazemier",
"main": "./index.js",
"keywords": [
"agent",
"browser",
"browserscope",
"os",
"parse",
"parser",
"ua",
"ua-parse",
"ua-parser",
"user agent",
"user",
"user-agent",
"useragent",
"version"
],
"maintainers": [
{
"name": "Appxplore Tech",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/appxplore-tech/useragent.git"
},
"devDependencies": {
"assume": "1.5.x",
"mocha": "9.0.0",
"pre-commit": "1.2.x",
"semver": "5.5.x",
"yamlparser": "0.0.x"
},
"pre-commit": [
"test",
"update"
],
"scripts": {
"test": "mocha $(find test -name '*.test.js')",
"qa": "mocha --ui exports $(find test -name '*.qa.js')",
"update": "node ./bin/update.js",
"prepublish": "npm run update"
},
"dependencies": {
"axios": "^1.6.4",
"lru-cache": "4.1.x",
"tmp": "0.0.x"
}
}