forked from alonronin/mockingoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 849 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
{
"name": "mockingoose",
"version": "2.4.0",
"description": "A Jest package for mocking mongoose models",
"main": "./lib",
"scripts": {
"test": "jest",
"start": "babel-node ./src",
"build": "babel src -d lib -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alonronin/mockingoose.git"
},
"keywords": [
"jest",
"mock",
"mongoose"
],
"author": "",
"license": "The Unlicense",
"bugs": {
"url": "https://github.com/alonronin/mockingoose/issues"
},
"homepage": "https://github.com/alonronin/mockingoose#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"jest": "^20.0.4"
},
"peerDependencies": {
"mongoose": "^4.11.1"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=6.4.0"
}
}