-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@hapiness/mongo",
"version": "2.1.0",
"description": "Hapiness Module for MongoDB usage",
"main": "commonjs/index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"test": "make test",
"pretest": "make pretest",
"coveralls": "make coveralls",
"packaging": "make packaging",
"prebuild": "make pretest && make test && make clean",
"build": "make tsc",
"postbuild": "make packaging"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hapinessjs/mongo-module.git"
},
"keywords": [
"Mongo",
"Mongoose",
"MongoDB",
"Hapiness",
"Framework",
"NodeJS",
"Node",
"HTTP",
"API",
"REST",
"Streams",
"Async",
"Decorator",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"Module",
"ES2015",
"ES2016",
"ES2017",
"ES6",
"ES7",
"ES8",
"Typescript"
],
"contributors": [
{
"name": "Julien Fauville",
"url": "https://github.com/Juneil"
},
{
"name": "Antoine Gomez",
"url": "https://github.com/antoinegomez"
},
{
"name": "Sébastien Ritz",
"url": "https://github.com/reptilbud"
},
{
"name": "Nicolas Jessel",
"url": "https://github.com/njl07"
}
],
"license": "SEE LICENSE IN https://github.com/hapinessjs/mongo-module/blob/master/LICENSE.md",
"bugs": {
"url": "https://github.com/hapinessjs/mongo-module/issues"
},
"homepage": "https://github.com/hapinessjs/mongo-module#readme",
"dependencies": {
"@types/gridfs-stream": "^0.5.30",
"@types/mongodb": "^3.0.9",
"@types/mongoose": "~5.3.21",
"debug": "^3.1.0",
"gridfs-stream": "^1.1.1",
"mongoose": "~5.4.23"
},
"devDependencies": {
"@hapiness/core": "^1.6.1",
"@types/fs-extra": "^5.0.1",
"@types/node": "^9.6.2",
"coveralls": "^3.0.0",
"fs-extra": "^5.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.1.0",
"mocha-typescript": "^1.1.12",
"rimraf": "^2.6.2",
"rxjs": "^5.5.8",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"unit.js": "^2.0.0"
},
"peerDependencies": {
"@hapiness/core": "^1.5.0",
"rxjs": "^5.5.8"
},
"engines": {
"node": ">=7.0.0"
}
}