-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.09 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
{
"name": "mongodb-utils",
"version": "1.1.6",
"description": "Utils for mongodb for nodejs",
"main": "lib/",
"files": [
"lib"
],
"scripts": {
"lint": "eslint 'lib/*.js'",
"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/mongodb-utils.git"
},
"nyc": {
"include": [
"lib/"
]
},
"contributors": [
{
"name": "Sebastien Chopin (@Atinux)"
},
{
"name": "Benjamin Canac (@benjamincanac)"
},
{
"name": "Gaetan SENN (@gaetansenn)"
}
],
"license": "MIT",
"peerDependencies": {
"mongodb": "^2.2.0"
},
"devDependencies": {
"mono-core": "1.0.0",
"ava": "0.25.0",
"codecov": "3.0.4",
"eslint": "5.4.0",
"mongodb": "3.1.3",
"mono-mongodb": "2.4.2",
"mono-test-utils": "1.2.4",
"nyc": "12.0.2",
"rimraf": "2.6.2",
"std-mocks": "1.0.1"
},
"keywords": []
}