-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.14 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
{
"name": "mono-mongodb",
"version": "2.4.2",
"description": "MongoDB module for Mono",
"main": "lib/",
"files": [
"lib"
],
"scripts": {
"lint": "eslint lib/**",
"test": "npm run lint && nyc ava --verbose --serial test/ && nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"preversion": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrajs/mono-mongodb.git"
},
"nyc": {
"include": [
"lib/"
]
},
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Benjamin Canac (@benjamincanac)"
},
{
"name": "Gaetan SENN (@gaetansenn)"
}
],
"license": "MIT",
"dependencies": {
"joi": "^13.0.1",
"mongodb": "^3.0.4"
},
"devDependencies": {
"mono-core": "1.0.0",
"ava": "0.25.0",
"codecov": "3.0.4",
"eslint": "5.4.0",
"mongodb-utils": "1.1.6",
"mono-test-utils": "1.2.4",
"nyc": "12.0.2",
"rimraf": "2.6.2",
"std-mocks": "1.0.1"
},
"keywords": [
"mongodb",
"mono",
"mono-mongodb",
"mongo"
]
}