forked from JohanObrink/mongoose-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 935 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
36
37
38
{
"private": false,
"name": "mongoose-model-mock",
"version": "0.4.0",
"description": "A replacement for mongoose in tests returning models with sinon stubs for methods",
"main": "index.js",
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js test"
},
"repository": {
"type": "git",
"url": "[email protected]:ADSKLowenthal/mongoose-model-mock.git"
},
"keywords": [
"mongoose",
"test",
"sinon"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ADSKLowenthal/mongoose-model-mock/issues"
},
"homepage": "https://github.com/ADSKLowenthal/mongoose-model-mock",
"dependencies": {
"sinon": "~1.8.1"
},
"devDependencies": {
"chai": "~1.9.0",
"gulp": "^3.8.8",
"gulp-jshint": "^1.8.5",
"gulp-mocha": "^1.1.0",
"jshint-stylish": "^1.0.0",
"mocha": "^1.21.4",
"mongoose": "~3.8.7",
"proxyquire": "~0.5.2",
"sinon-chai": "~2.5.0"
}
}