forked from catchpoint/WebPageTest.api-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "webpagetest",
"version": "0.3.0",
"description": "WebPageTest API wrapper for NodeJS",
"author": "Marcel Duran <[email protected]> (http://github.com/marcelduran)",
"homepage": "http://github.com/marcelduran/webpagetest-api",
"keywords": [
"webpagetest",
"api",
"performance",
"test",
"browser"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/marcelduran/webpagetest-api/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/marcelduran/webpagetest-api.git"
},
"bugs": {
"url": "http://github.com/marcelduran/webpagetest-api/issues"
},
"main": "lib/webpagetest.js",
"bin": "bin/webpagetest",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec test/*-test.js"
},
"engines": {
"node": ">=0.10.1"
},
"dependencies": {
"commander": "~2.3.0",
"csv": "~0.4.1",
"entities": "~1.1.1",
"mocha": "~1.21.4",
"xml2js": "~0.4.4"
},
"devDependencies": {
"nock": "~0.48.2"
}
}