UNPKG

pagexray

Version:

Xray your HAR file and know all about the page

73 lines (72 loc) 2.08 kB
{ "name": "pagexray", "version": "4.4.4", "description": "Xray your HAR file and know all about the page", "keywords": [ "performance", "web", "har", "webperf", "perfmatters" ], "homepage": "http://www.sitespeed.io", "license": "MIT", "author": { "name": "Peter Hedenskog", "url": "http://www.peterhedenskog.com" }, "contributors": [ { "name": "Tobias Lidskog" } ], "repository": { "type": "git", "url": "git@github.com:sitespeedio/pagexray.git" }, "bugs": { "url": "https://github.com/sitespeedio/pagexray/issues" }, "files": [ "bin", "lib" ], "scripts": { "lint": "eslint .", "lint:fix": "eslint . --fix", "eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check", "test": "mocha", "jsdoc": "jsdoc lib/* -d dist/doc", "travis": "npm run eslint-check && npm run lint && npm run test && npm run dist", "browserify": "mkdirp dist && browserify lib/index.js -o dist/pagexray.js --standalone PageXray -t [ babelify --presets [ @babel/preset-env ] ] -p [ browserify-banner --template 'PageXray v<%= pkg.version %> - Xray your HAR file and know all about the page - https://github.com/sitespeedio/pagexray' ]", "uglify": "uglifyjs dist/pagexray.js --compress --mangle --comments '/pagexray/' > dist/pagexray.min.js", "dist": "npm run browserify && npm run uglify" }, "engines": { "node": ">=8.9.0" }, "devDependencies": { "babelify": "10.0.0", "@babel/core": "7.21.8", "@babel/preset-env": "7.21.5", "bluebird": "3.7.2", "browserify": "16.5.0", "browserify-banner": "1.0.15", "chai": "4.3.7", "eslint": "8.41.0", "eslint-config-prettier": "8.8.0", "eslint-plugin-prettier": "4.2.1", "jsdoc": "3.6.3", "lodash.foreach": "4.5.0", "lodash.pluck": "3.1.2", "mkdirp": "^0.5.1", "mocha": "6.2.0", "prettier": "2.8.8", "uglify-es": "3.3.9" }, "main": "./lib/index.js", "bin": "./bin/index.js", "dependencies": { "minimist": "1.2.8" } }