forked from eugef/node-mocks-http
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 KB
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
{
"author": "Howard Abrams <howard.abrams@gmail.com> (http://www.github.com/howardabrams)",
"name": "node-mocks-http",
"description": "Mock 'http' objects for testing Express routing functions",
"version": "1.4.4",
"homepage": "https://github.com/howardabrams/node-mocks-http",
"bugs": {
"url": "https://github.com/howardabrams/node-mocks-http/issues"
},
"contributors": [
{
"name": "Howard Abrams",
"email": "howard.abrams@gmail.com",
"url": "https://github.com/howardabrams"
},
{
"name": "Johnny Estilles",
"email": "johnny.estilles@agentia.asia",
"url": "https://github.com/JohnnyEstilles"
}
],
"license": "MIT",
"keywords": [
"mock",
"stub",
"dummy",
"nodejs",
"js",
"testing",
"test",
"http",
"http mock"
],
"repository": {
"type": "git",
"url": "git://github.com/howardabrams/node-mocks-http.git"
},
"main": "./lib/http-mock.js",
"engines": {
"node": ">=0.6"
},
"dependencies": {
"mime": "^1.3.4",
"type-is": "^1.6.4"
},
"devDependencies": {
"chai": "^2.2.0",
"eslint": "^0.22.1",
"gulp": "^3.8.11",
"gulp-eslint": "^0.12.0",
"gulp-istanbul": "^0.9.0",
"gulp-mocha": "^2.0.1",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"scripts": {
"test": "gulp spec"
}
}