-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "sinon-express-mock",
"version": "2.2.1",
"description": "Simple request and response mock objects to pass into Express routes when testing using Sinon.",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel -d lib src",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danawoodman/sinon-express-mock.git"
},
"bugs": {
"url": "https://github.com/danawoodman/sinon-express-mock/issues"
},
"homepage": "https://github.com/danawoodman/sinon-express-mock#readme",
"keywords": [
"express",
"mock",
"test",
"request",
"response",
"req",
"res",
"spec",
"mocha",
"sinon",
"spy"
],
"author": {
"name": "Dana Woodman",
"email": "[email protected]",
"url": "danawoodman.com"
},
"license": "MIT",
"peerDependencies": {
"sinon": "*"
},
"devDependencies": {
"babel-cli": "6.2.0",
"babel-preset-es2015": "6.1.18",
"sinon": "*"
}
}