-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 990 Bytes
/
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
{
"name": "node-http-request-tracker",
"version": "0.1.0",
"description": "Class to track current, recent, and long-running requests within a Node HTTP server",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/UberEther/node-http-request-tracker.git"
},
"author": {
"name": "Michael Samblanet",
"email": "[email protected]",
"url": "http://github.com/msamblanet/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/UberEther/node-http-request-tracker/issues"
},
"homepage": "https://github.com/UberEther/node-http-request-tracker",
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover --config test/istanbul.yml node_modules/mocha/bin/_mocha"
},
"dependencies": {
"coffee-script": "^1.9.2",
"capped-array": "^0.0.1"
},
"devDependencies": {
"mocha": "^2.3.0",
"chai": "^3.2.0",
"rewire": "^2.3.4",
"istanbul": "^0.3.5",
"coffee-coverage": "^0.6.3"
}
}