forked from sitespeedio/sitespeed.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.46 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "sitespeed.io",
"bin": "./bin/sitespeed.js",
"version": "12.0.1",
"description": "Analyze the web performance of your site",
"keywords": [
"performance",
"web",
"rules",
"har",
"webperf",
"perfmatters",
"navigation-timing",
"browser"
],
"homepage": "https://www.sitespeed.io",
"license": "MIT",
"author": {
"name": "Peter Hedenskog",
"url": "https://www.peterhedenskog.com"
},
"contributors": [
{
"name": "Tobias Lidskog"
},
{
"name": "Jonathan Lee"
}
],
"repository": {
"type": "git",
"url": "git://github.com/sitespeedio/sitespeed.io.git"
},
"bugs": {
"url": "https://github.com/sitespeedio/sitespeed.io/issues"
},
"scripts": {
"lint": "eslint . && npm run pug-lint",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"eclint": "eclint check lib/**/* bin/**/* tools/**/*",
"eclint:fix": "eclint fix * lib/**/* bin/**/* tools/**/* !*.iml",
"pug-lint": "pug-lint lib/plugins/html/templates",
"test": "mocha",
"check-licenses": "tools/check-licenses.js",
"travis": "npm run eslint-check && npm run lint && npm run test",
"build:css": "node-sass lib/plugins/html/src/sass/main.scss > lib/plugins/html/assets/css/index.css && cleancss -o lib/plugins/html/assets/css/index.min.css lib/plugins/html/assets/css/index.css && rm lib/plugins/html/assets/css/index.css",
"generate:assets": "mkdir -p assets/$npm_package_version && cp -R lib/plugins/html/assets/ assets/$npm_package_version/"
},
"engines": {
"node": ">=10.13.0"
},
"devDependencies": {
"bluebird": "3.5.5",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"clean-css-cli": "4.3.0",
"cz-customizable": "^6.2.0",
"eclint": "^2.8.1",
"eslint": "6.2.2",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-prettier": "3.1.0",
"jsdoc": "^3.6.3",
"license-checker": "^16.0.0",
"mocha": "^5.0.4",
"node-sass": "^4.12.0",
"prettier": "^1.11.1",
"pug-lint": "^2.5.0",
"pug-lint-config-clock": "^2.0.0"
},
"main": "./lib/sitespeed.js",
"dependencies": {
"@google-cloud/storage": "3.2.0",
"aws-sdk": "2.613.0",
"axe-core": "3.4.2",
"browsertime": "8.0.1",
"cli-color": "1.4.0",
"concurrent-queue": "7.0.2",
"dayjs": "1.8.20",
"fast-crc32c": "2.0.0",
"fast-stats": "0.0.5",
"find-up": "4.1.0",
"fs-extra": "8.1.0",
"influx": "5.5.1",
"intel": "1.2.0",
"jstransformer-markdown-it": "2.1.0",
"junit-report-builder": "1.3.3",
"lodash.chunk": "4.2.0",
"lodash.clonedeep": "4.5.0",
"lodash.flatten": "4.4.0",
"lodash.foreach": "4.5.0",
"lodash.get": "4.4.2",
"lodash.isempty": "4.4.0",
"lodash.merge": "4.6.2",
"lodash.pick": "4.4.0",
"lodash.pullall": "4.2.0",
"lodash.reduce": "4.6.0",
"lodash.set": "4.3.2",
"lodash.union": "4.6.0",
"markdown": "0.5.0",
"mkdirp": "0.5.1",
"node-slack": "0.0.7",
"p-limit": "2.2.2",
"pagexray": "2.5.9",
"pug": "2.0.4",
"recursive-readdir": "2.2.2",
"simplecrawler": "1.1.8",
"tape": "4.13.0",
"text-table": "0.2.0",
"third-party-web": "0.11.1",
"uuid": "3.4.0",
"webcoach": "4.4.1",
"webpagetest": "0.3.9",
"yargs": "15.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz-config.js"
}
}
}