forked from sitespeedio/browsertime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.24 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
{
"name": "browsertime",
"version": "0.10.2",
"bin": "./bin/browsertime.js",
"description": "Analyze the speed of your web page",
"keywords": [
"performance",
"web",
"speed",
"navigation-timing",
"har",
"browser"
],
"homepage": "http://www.browsertime.net",
"license": "Apache-2.0",
"author": {
"name": "Tobias Lidskog"
},
"contributors": {
"name": "Peter Hedenskog"
},
"repository": {
"type": "git",
"url": "git://github.com/tobli/browsertime.git"
},
"bugs": {
"url": "https://github.com/tobli/browsertime/issues"
},
"files": [
"bin",
"lib",
"scripts"
],
"engines": {
"node": ">=0.10"
},
"main": "./lib/browsertime.js",
"devDependencies": {
"jshint": "2.8.x"
},
"dependencies": {
"async": "1.3.0",
"async-node-events": "git+https://github.com/joshuafcole/async-node-events.git#d32411f1f4",
"browsermob-proxy-api": "0.2.0",
"cross-spawn-async": "1.0.1",
"fast-stats": "0.0.3",
"getport": "0.1.0",
"minimist": "1.1.1",
"selenium-webdriver": "2.46.1",
"valid-url": "1.0.9",
"whereis": "0.4.0",
"winston": "1.0.1"
},
"scripts": {
"lint": "jshint .",
"test": "npm run lint",
"travis": "npm run lint"
}
}