-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
{
"name": "pageload-timer",
"description": "Downloads a given list of web pages, and returns an array of their pageload latencies in milliseconds.",
"version": "1.0.0",
"main": "/bin/www",
"scripts": {
"start": "node ./bin/www",
"test": "mocha --reporter spec tests"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/harvest316/pageload-timer.git"
},
"keywords": [
"Pageload",
"Timer",
"Heroku",
"Mocha",
"Chai",
"JSON",
"BDD",
"ExpressJS",
"Grunt",
"Expect.js",
"Test",
"Web Service"
],
"author": "Paul Harvey / harvest316",
"license": "MIT",
"homepage": "https://github.com/harvest316/pageload-timer/",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.14.1",
"express": "^4.13.4",
"pagelt": "0.0.1",
"valid-url": "^1.0.9",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.0.1",
"superagent": "^1.7.2"
},
"devDependencies": {
"accepts": "^1.3.1",
"chai": "2.3.0",
"chai-json-schema": "^1.1.0",
"underscore": "^1.7.0",
"debug": "^2.2.0",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^1.0.0",
"grunt-coveralls": "^1.0.0",
"grunt-env": "^0.4.4",
"grunt-exec": "^0.4.6",
"grunt-jsdoc": "^1.0.0",
"grunt-mocha-istanbul": "^3.0.1",
"grunt-simple-mocha": "^0.4.0",
"istanbul": "^0.4.2",
"jsdoc": "^3.3.3",
"mocha": "^2.4.5"
},
"engines": {
"node": "4.3.1"
}
}