-
Notifications
You must be signed in to change notification settings - Fork 139
/
package.json
57 lines (57 loc) · 1.18 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
{
"name": "useragent",
"version": "2.3.0",
"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": "Arnout Kazemier",
"email": "info@3rd-Eden.com",
"web": "http://www.3rd-Eden.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/3rd-Eden/useragent.git"
},
"devDependencies": {
"assume": "1.5.x",
"mocha": "5.0.x",
"pre-commit": "1.2.x",
"request": "^2.88.0",
"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": {
"lru-cache": "4.1.x",
"tmp": "0.0.x"
}
}