-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
61 lines (61 loc) · 1.24 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
{
"name": "sinon-mongoose",
"version": "2.3.0",
"description": "Sinon extensions for Mongoose stubs",
"homepage": "",
"author": {
"name": "Gonzalo Aguirre",
"email": "[email protected]",
"url": ""
},
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"sinon",
"mongoose",
"mock",
"stub",
"expects",
"test",
"unit",
"query",
"static",
"promise",
"method"
],
"repository": "underscopeio/sinon-mongoose",
"devDependencies": {
"@babel/core": "^7.4.3",
"@kollavarsham/gulp-coveralls": "^0.2.5",
"del": "^4.1.0",
"eslint-config-prettier": "^4.1.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^6.0.0",
"gulp-plumber": "^1.2.1",
"husky": "^1.3.1",
"isparta": "^4.1.1",
"mongoose": "^5.1.7",
"prettier": "1.16.4",
"pretty-quick": "^1.10.0",
"sinon": "7.3.1"
},
"peerDependencies": {
"sinon": "5 - 7"
},
"scripts": {
"prepublishOnly": "gulp prepublishOnly",
"test": "gulp"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}