-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "maraquia",
"version": "0.5.11",
"description": "Maraquia -- a simple ORM for MongoDB",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Riim/Maraquia.git"
},
"author": "Dmitry Vibe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Riim/Maraquia/issues"
},
"homepage": "https://github.com/Riim/Maraquia#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^25.1.4",
"@types/joi": "^14.3.4",
"@types/pluralize": "0.0.29",
"@types/pretty-format": "^24.3.0",
"benchmark": "^2.1.4",
"jest": "^25.2.4",
"joi": "^14.3.1",
"mongoose": "5.9.7",
"mongorito": "3.0.4",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/mongodb": "^3.5.4",
"debug": "^4.1.1",
"mongodb": "^3.5.5",
"pluralize": "^8.0.0",
"pretty-format": "^25.2.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}