forked from tobie/ua-parser
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.25 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
{
"name": "ua-parser",
"description": "A port of Browserscope's user agent parser.",
"main": "./js/index",
"version": "0.3.2",
"maintainers": [
{
"name": "Tobie Langel",
"email": "[email protected]",
"web": "http://tobielangel.com"
}
],
"contributors": [
{
"name": "Tobie Langel",
"email": "[email protected]",
"web": "http://tobielangel.com"
},
{
"name": "Lindsey Simon",
"email": "[email protected]",
"web": "http://www.idreamofuni.com"
},
{
"name": "Philip Tellis",
"email": "[email protected]",
"web": "http://bluesmoon.info"
},
{
"name": "Dave Olsen",
"email": "[email protected]",
"web": "http://dmolsen.com"
}
],
"repository": {
"type": "git",
"url": "http://github.com/tobie/ua-parser.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/tobie/ua-parser/master/js/LICENSE"
},
{
"type": "Apache-2.0",
"url": "https://raw.github.com/tobie/ua-parser/master/js/LICENSE"
}
],
"dependencies": {
"yamlparser": ">=0.0.2"
},
"devDependencies": {
"mocha": "*"
},
"scripts": {
"test": "mocha -u tdd ./js/test/*.js"
}
}