forked from faisalman/ua-parser-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 5.04 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"title": "UAParser.js",
"name": "ua-parser-js",
"version": "0.7.21",
"author": "Faisal Salman <[email protected]> (http://faisalman.com)",
"description": "Lightweight JavaScript-based user-agent string parser",
"keywords": [
"user-agent",
"parser",
"browser",
"engine",
"os",
"device",
"cpu",
"jquery-plugin",
"ecosystem:jquery"
],
"homepage": "http://github.com/faisalman/ua-parser-js",
"contributors": [
"Aamir Poonawalla <[email protected]>",
"Admas <[email protected]>",
"algenon <[email protected]>",
"Alvin Portillo <[email protected]>",
"Andrea Vaghi <[email protected]>",
"Anton Zhiyanov <[email protected]>",
"Arturo Mejia <[email protected]>",
"Arun Rama Reddy <[email protected]>",
"Austin Pray <[email protected]>",
"Benjamin Bertrand <[email protected]>",
"Benjamin Urban <[email protected]>",
"boneyao <[email protected]>",
"Carl C Von Lewin <[email protected]>",
"CESAR RAMOS <[email protected]>",
"Christopher De Cairos <[email protected]>",
"Dario Vladovic <[email protected]>",
"Davit Barbakadze <[email protected]>",
"ddivernois <[email protected]>",
"Demis Palma <[email protected]>",
"dhoko <[email protected]>",
"dianhe <[email protected]>",
"Dmitry Tyschenko <[email protected]>",
"Douglas Li <[email protected]>",
"Dumitru Uzun <[email protected]>",
"Eric Schrenker <[email protected]>",
"Erik Hesselink <[email protected]>",
"Fabian Becker <[email protected]>",
"Faisal Salman <[email protected]>",
"Frédéric Camblor <[email protected]>",
"Germán M. Bravo <[email protected]>",
"Grigory Dmitrenko <[email protected]>",
"Hendrik Helwich <[email protected]>",
"Hermann Ebert <[email protected]>",
"jackpoll <[email protected]>",
"Jake Mc <[email protected]>",
"John Tantalo <[email protected]>",
"John Yanarella <[email protected]>",
"Jon Buckley <[email protected]>",
"Kendall Buchanan <[email protected]>",
"Lee Treveil <[email protected]>",
"leonardo <[email protected]>",
"Levente Balogh <[email protected]>",
"Liam Quinn <[email protected]>",
"Lithin <[email protected]>",
"Loris Guignard <[email protected]>",
"Lukas Drgon <[email protected]>",
"Lukas Eipert <[email protected]>",
"Malash <[email protected]>",
"Martynas <[email protected]>",
"Matt Brophy <[email protected]>",
"Max Maurer <[email protected]>",
"Maximilian Haupt <[email protected]>",
"Michael Hess <[email protected]>",
"naoh <[email protected]>",
"Nik Rolls <[email protected]>",
"Nikhil Motiani <[email protected]>",
"niris <[email protected]>",
"Nobuo Okada <[email protected]>",
"otakuSiD <[email protected]>",
"Peter Dave Hello <[email protected]>",
"philippsimon <[email protected]>",
"Pieter Hendrickx <[email protected]>",
"Piper Chester <[email protected]>",
"Robert Tod <[email protected]>",
"Ron Korland <[email protected]>",
"Ross Noble <[email protected]>",
"Sandro Sonntag <[email protected]>",
"sgautrea <[email protected]>",
"Shane Gautreau <[email protected]>",
"Shane Thacker <[email protected]>",
"shchotse <[email protected]>",
"Simon Eisenmann <[email protected]>",
"Simon Lang <[email protected]>",
"Stiekel <[email protected]>",
"Sylvain Gizard <[email protected]>",
"szchenghuang <[email protected]>",
"Vadim Kurachevsky <[email protected]>",
"Yun Young-jin <[email protected]>"
],
"main": "src/ua-parser.js",
"scripts": {
"build": "uglifyjs src/ua-parser.js -o dist/ua-parser.min.js --comments '/UAParser\\.js/' && uglifyjs src/ua-parser.js -o dist/ua-parser.pack.js --comments '/UAParser\\.js/' --compress --mangle",
"test": "jshint src/ua-parser.js && mocha -R nyan test/test.js",
"verup": "node ./node_modules/verup",
"version": "node ./node_modules/verup 0"
},
"verup": {
"files": [
"bower.json",
"package.js",
"src/ua-parser.js"
],
"regs": [
"^((?:\\$|(\\s*\\*\\s*@)|(\\s*(?:var|,)?\\s+))(?:LIBVERSION|version)[\\s\\:='\"]+)([0-9]+(?:\\.[0-9]+){2,2})",
"^(\\s?\\*.*v)([0-9]+(?:\\.[0-9]+){2,2})"
]
},
"devDependencies": {
"jshint": "~1.1.0",
"mocha": "~1.8.0",
"requirejs": "^2.3.2",
"uglify-js": "~2.7.5",
"verup": "^1.3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/faisalman/ua-parser-js.git"
},
"license": "MIT",
"engines": {
"node": "*"
},
"directories": {
"dist": "dist",
"src": "src",
"test": "test"
},
"bugs": "https://github.com/faisalman/ua-parser-js/issues",
"demo": "https://faisalman.github.io/ua-parser-js",
"download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.min.js"
}