-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "loading-comparison",
"description": "Compare the loading performance of two or more websites or website variations",
"keywords": [
"loading-time",
"comparison",
"benchmark",
"performance",
"browsertime"
],
"version": "1.1.1",
"author": "Markus Oberlehner",
"homepage": "https://github.com/maoberlehner/loading-comparison",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maoberlehner/loading-comparison"
},
"bugs": {
"url": "https://github.com/maoberlehner/loading-comparison/issues"
},
"bin": {
"loading-comparison": "bin/loading-comparison.js"
},
"dependencies": {
"args": "^4.0.0",
"browsertime": "^2.5.0",
"chalk": "^2.4.1",
"cli-table": "^0.3.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-modularis": "^4.0.1",
"eslint-plugin-import": "^2.11.0",
"sinon": "^5.0.2"
},
"scripts": {
"test": "ava"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}