forked from eugef/node-mocks-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.69 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
64
65
66
67
68
69
70
71
72
{
"author": "Howard Abrams <[email protected]> (http://www.github.com/howardabrams)",
"name": "node-mocks-http",
"description": "Mock 'http' objects for testing Express routing functions",
"version": "1.5.6",
"homepage": "https://github.com/howardabrams/node-mocks-http",
"bugs": {
"url": "https://github.com/howardabrams/node-mocks-http/issues"
},
"contributors": [
{
"name": "Howard Abrams",
"email": "[email protected]",
"url": "https://github.com/howardabrams"
},
{
"name": "Johnny Estilles",
"email": "[email protected]",
"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": {
"accepts": "^1.3.3",
"depd": "^1.1.0",
"fresh": "^0.3.0",
"merge-descriptors": "^1.0.1",
"methods": "^1.1.2",
"mime": "^1.3.4",
"net": "^1.0.2",
"parseurl": "^1.3.1",
"range-parser": "^1.2.0",
"type-is": "^1.6.14"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.13.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"run-sequence": "~1.2.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
},
"scripts": {
"spec": "gulp spec",
"test": "gulp test",
"postversion": "npm publish && git push --follow-tags"
}
}