This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
forked from sitespeedio/browsertime
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.39 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
{
"description": "Browsertime",
"version": "4.9.2-android",
"bin": "./bin/browsertime.js",
"dependencies": {
"@sitespeed.io/throttle": "0.5.1",
"adbkit": "2.11.0",
"chrome-har": "0.9.1",
"dayjs": "1.8.13",
"del": "4.1.0",
"execa": "1.0.0",
"fast-stats": "0.0.5",
"hasbin": "1.2.3",
"intel": "1.2.0",
"lodash.foreach": "4.5.0",
"lodash.get": "4.4.2",
"lodash.groupby": "4.6.0",
"lodash.isempty": "4.4.0",
"lodash.merge": "4.6.2",
"lodash.pick": "4.4.0",
"lodash.remove": "4.7.0",
"lodash.set": "4.3.2",
"mkdirp": "0.5.1",
"selenium-webdriver": "https://github.com/mozilla/selenium/archive/v3.6.0-android.tar.gz",
"tracium": "0.2.0",
"valid-url": "1.0.9",
"@cypress/xvfb": "1.2.4",
"yargs": "13.2.2"
},
"optionalDependencies": {
"@sitespeed.io/chromedriver": "74.0.372-9.6-1",
"@sitespeed.io/geckodriver": "0.24.0",
"sharp": "0.22.1"
},
"devDependencies": {
"bluebird": "3.5.1",
"chai": "^4.1.2",
"chai-as-promised": "~7.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"longjohn": "^0.2.12",
"mocha": "^5.1.1",
"prettier": "^1.12.1",
"sequencediagrams": "0.0.8"
},
"engines": {
"node": ">=10.13.0"
},
"files": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"bin",
"browserscripts",
"browsersupport",
"browsertime.png",
"docs",
"index.js",
"lib",
"package.json",
"vendor"
],
"main": "index.js",
"scripts": {
"test": "mocha test/unitTests test/browserTests test/commandTests",
"test:unit": "mocha test/unitTests",
"test:browser": "mocha test/browserTests",
"test:commands": "mocha test/commandTests",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"travis": "npm run eslint-check && npm run lint && npm run test",
"generateDocs": "sequencediagrams docs/sequence-diagrams"
},
"name": "browsertime",
"author": "Tobias Lidskog",
"contributors": [
{
"name": "Peter Hedenskog"
},
{
"name": "Jonathan Lee"
}
],
"repository": {
"type": "git",
"url": "https://github.com/sitespeedio/browsertime.git"
},
"homepage": "https://www.sitespeed.io/documentation/browsertime/",
"license": "MIT"
}