forked from mainnika/mongoose-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 974 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
39
40
41
{
"private": false,
"name": "@landtechnologies/mongoose-mock",
"version": "1.2.4",
"description": "A replacement for mongoose in tests returning models with sinon stubs for methods",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"test": "mocha test/**/*.js"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"mongoose",
"test",
"sinon"
],
"author": "Johan Öbrink <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohanObrink/mongoose-mock/issues"
},
"homepage": "https://github.com/JohanObrink/mongoose-mock",
"dependencies": {
"mongoose": "^4.13.21",
"sinon": "^11.1.2",
"underscore": "^1.13.1"
},
"devDependencies": {
"chai": "^4.3.4",
"jshint": "^2.13.1",
"mocha": "^9.1.3",
"proxyquire": "^1.7.2",
"sinon-chai": "^3.7.0"
},
"publishConfig": {
"@landtechnologies:registry": "https://npm.pkg.github.com/"
}
}