-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
55 lines (55 loc) · 1.19 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
{
"name": "browser-perf",
"version": "1.4.11",
"description": "Measure browser rendering performance metrics",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --recursive --require=./test/test.helper.js ./test"
},
"bin": {
"browser-perf": "lib/cli.js"
},
"author": "Parashuram",
"license": "BSD-2-Clause",
"dependencies": {
"JSONStream": "^1.0.6",
"byline": "^4.2.1",
"cli-table": "~0.3.1",
"commander": "^2.9.0",
"debug": "^2.2.0",
"event-stream": "^3.3.2",
"glob": "^6.0.2",
"jsmin": "~1.0.1",
"q": "^1.4.1",
"request": "^2.65.0",
"wd": "^0.4.0"
},
"devDependencies": {
"chai": "~3.4.0",
"chai-as-promised": "^5.1.0",
"mocha": "^2.3.3",
"sinon": "^1.17.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/axemclion/browser-perf.git"
},
"keywords": [
"browser-perf",
"rendering",
"telemetry",
"chromium",
"performance",
"high performance web sites",
"metrics",
"monitoring",
"web development",
"webperf"
],
"bugs": {
"url": "https://github.com/axemclion/browser-perf/issues"
}
}