forked from commenthol/ua-parser2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ua-parser2",
"description": "An improved user agent parser.",
"main": "./js/index",
"version": "0.1.32",
"engines": {
"node": ">=0.8.0"
},
"maintainers": [
{
"name": "commenthol",
"email": "commenthol@gmail.com"
}
],
"contributors": [
{
"name": "Tobie Langel",
"email": "tobie.langel@gmail.com",
"web": "http://tobielangel.com"
},
{
"name": "Lindsey Simon",
"email": "lsimon@commoner.com",
"web": "http://www.idreamofuni.com"
},
{
"name": "Philip Tellis",
"email": "philip@bluesmoon.info",
"web": "http://bluesmoon.info"
},
{
"name": "Dave Olsen",
"email": "dmolsen@gmail.com",
"web": "http://dmolsen.com"
},
{
"name": "commenthol",
"email": "commenthol@gmail.com"
}
],
"repository": {
"type": "git",
"url": "http://github.com/commenthol/ua-parser2.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/commenthol/ua-parser2/master/js/LICENSE"
},
{
"type": "Apache-2.0",
"url": "https://raw.github.com/commenthol/ua-parser2/master/js/LICENSE"
}
],
"keywords": [
"User-Agent",
"Parser",
"ua-parser"
],
"dependencies": {
"js-yaml": ">=3.4.2"
},
"devDependencies": {
"commander": ">=2.3.0",
"mocha": "*",
"shelljs": ">=0.3.0",
"streamss": ">=0.1.0"
},
"scripts": {
"prepublish": "js/bin/quick.js",
"test": "cd js && mocha test/load/*.mocha.js && mocha",
"lint": "jshint js/*.js js/*/*.js",
"benchmark": "cd benchmark && npm i && node run.js"
}
}