forked from alonronin/mockingoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.4 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
62
{
"name": "mockingoose",
"version": "2.13.0",
"description": "A Jest package for mocking mongoose models",
"main": "./lib",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint:src": "tslint -c tslint.json 'src/**/*.ts'",
"lint:tests": "tslint -c tslint.json '___tests___/**/*.ts'",
"lint": "npm run lint:src && npm run lint:tests"
},
"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": {
"@types/jest": "^24.0.11",
"@types/mongoose": "^5.3.23",
"jest": "^24.5.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.4000"
},
"peerDependencies": {
"mongoose": ">=4.9.10"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"engines": {
"node": ">=6.4.0"
},
"dependencies": {
"mongoose": "^5.5.0"
}
}