-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "browser-report",
"version": "2.2.12",
"description": "Report browser settings like whatsmybrowser.org.",
"keywords": [
"browser details",
"browser detection",
"browser",
"detect",
"report",
"supported",
"user agent string",
"user agent",
"user-agent",
"useragent",
"viewport",
"whatsmybrowser"
],
"main": "./dist/browser-report.js",
"scripts": {
"pretest": "eslint \"**/*.js\"",
"test": "open test/index.html",
"prepare": "npm run mkdir && npm run cp && npm run uglify",
"mkdir": "mkdir -p dist",
"cp": "cp index.js dist/browser-report.js",
"uglify": "uglifyjs dist/browser-report.js -o dist/browser-report.min.js --compress --mangle",
"gzip": "gzip --keep --force dist/browser-report.js dist/browser-report.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keithws/browser-report.git"
},
"author": "Keith W. Shaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/keithws/browser-report/issues"
},
"homepage": "https://github.com/keithws/browser-report#readme",
"devDependencies": {
"eslint": "^6.5.1",
"mocha": "^6.2.2",
"should": "^13.2.3",
"uglify-js": "^3.6.3"
}
}