forked from keithws/browser-report
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.14 KB
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
{
"name": "browser-report",
"version": "2.2.8",
"description": "Report browser settings like whatsmybrowser.org.",
"keywords": "browser user-agent useragent viewport screen layout plugins report detect",
"main": "./dist/browser-report.js",
"scripts": {
"pretest": "eslint \"**/*.js\"",
"test": "open file://`find $PWD/test -type f -name '*.html'`",
"prepublish": "npm run cp && npm run uglify",
"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": "^3.13.1",
"mocha": "^2.4.5",
"should": "^8.2.1",
"uglify-js": "^2.6.1"
}
}