forked from Nubescope/sinon-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.07 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
{
"name": "sinon-mongoose",
"version": "2.3.1",
"description": "Sinon extensions for Mongoose stubs",
"homepage": "",
"author": {
"name": "Gonzalo Aguirre",
"email": "aguirre.gonzalo@gmail.com",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"sinon",
"mongoose",
"mock",
"stub",
"expects",
"test",
"unit",
"query",
"static",
"promise",
"method"
],
"repository": "underscopeio/sinon-mongoose",
"devDependencies": {
"eslint-config-prettier": "^6.8.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^7.0.2",
"gulp-plumber": "^1.2.1",
"husky": "^3.1.0",
"isparta": "^4.1.1",
"mongoose": "~5.3.16",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"sinon": "^7.4.0"
},
"peerDependencies": {
"sinon": "5 - 7"
},
"scripts": {
"test": "gulp"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}