-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
72 lines (72 loc) · 2.03 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
{
"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": "[email protected]: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"
}
}