forked from faisalman/ua-parser-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.26 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
{
"title": "UAParser.js",
"name": "ua-parser-js",
"version": "0.7.14",
"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]>",
"Andrea Vaghi <[email protected]>",
"Anton Zhiyanov <[email protected]>",
"Austin Pray <[email protected]>",
"Benjamin Bertrand <[email protected]>",
"boneyao <[email protected]>",
"Carl C Von Lewin <[email protected]>",
"CESAR RAMOS <[email protected]>",
"Christopher De Cairos <[email protected]>",
"Davit Barbakadze <[email protected]>",
"ddivernois <[email protected]>",
"Demis Palma <[email protected]>",
"Dmitry Tyschenko <[email protected]>",
"Douglas Li <[email protected]>",
"Dumitru Uzun <[email protected]>",
"Erik Hesselink <[email protected]>",
"Fabian Becker <[email protected]>",
"Faisal Salman <[email protected]>",
"Frédéric Camblor <[email protected]>",
"Grigory Dmitrenko <[email protected]>",
"Hendrik Helwich <[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]>",
"Lukas Eipert <[email protected]>",
"Malash <[email protected]>",
"Martynas <[email protected]>",
"Maximilian Haupt <[email protected]>",
"Max Maurer <[email protected]>",
"Michael Hess <[email protected]>",
"naoh <[email protected]>",
"Nik Rolls <[email protected]>",
"niris <[email protected]>",
"otakuSiD <[email protected]>",
"Peter Dave Hello <[email protected]>",
"philippsimon <[email protected]>",
"Pieter Hendrickx <[email protected]>",
"Robert Tod <[email protected]>",
"Ross Noble <[email protected]>",
"Sandro Sonntag <[email protected]>",
"sgautrea <[email protected]>",
"Shane Gautreau <[email protected]>",
"Shane Thacker <[email protected]>",
"Simon Eisenmann <[email protected]>",
"Simon Lang <[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": "(GPL-2.0 OR 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"
}