forked from faisalman/ua-parser-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.73 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
{
"title": "UAParser.js",
"name": "ua-parser-js",
"version": "0.7.8",
"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"
],
"homepage": "http://github.com/faisalman/ua-parser-js",
"contributors": [
"Faisal Salman <[email protected]>",
"Benjamin Bertrand <[email protected]>",
"Carl C Von Lewin <[email protected]>",
"Christopher De Cairos <[email protected]>",
"Davit Barbakadze <[email protected]>",
"Dmitry Tyschenko <[email protected]>",
"Douglas Li <[email protected]>",
"Dumitru Uzun <[email protected]>",
"Erik Hesselink <[email protected]>",
"Fabian Becker <[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]>",
"Max Maurer <[email protected]>",
"Michael Hess <[email protected]>",
"OtakuSiD <[email protected]>",
"Ross Noble <[email protected]>",
"Sandro Sonntag <[email protected]>"
],
"main": "src/ua-parser.js",
"scripts": {
"build": "uglifyjs src/ua-parser.js > dist/ua-parser.min.js --comments '/UAParser\\.js/' && uglifyjs src/ua-parser.js > 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": [
"ua-parser-js.jquery.json",
"component.json",
"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",
"uglify-js": "~1.3.4",
"verup": "^1.3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/faisalman/ua-parser-js.git"
},
"licenses": [
{
"type": "GPLv2",
"url": "http://www.gnu.org/licenses/gpl-2.0.html"
},
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"engines": {
"node": "*"
},
"directories": {
"dist": "dist",
"src": "src",
"test": "test"
}
}