-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "mongoose-middleware",
"description": "Middleware for mongoose that makes filtering, sorting, pagination and projection chainable and simple to apply",
"version": "2.0.1",
"keywords": [
"mongo",
"mongoose",
"mongoose middlware",
"mongoose-middleware"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:PlayNetwork/mongoose-middleware.git"
},
"main": "dist",
"scripts": {
"lint": "gulp lint",
"posttest": "nyc report --reporter=text-lcov | coveralls",
"prepare": "gulp build",
"pretest": "gulp clean && gulp lint",
"test": "NODE_ENV=test nyc mocha ./test/src",
"test:unit": "NODE_ENV=test nyc mocha ./test/src"
},
"nyc": {
"all": true,
"include": [
"src"
],
"instrument": false,
"report-dir": "./reports",
"reporter": [
"lcov",
"text",
"text-summary"
],
"require": [
"@babel/register"
],
"sourceMap": false
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"eslint-plugin-babel": "^5.3.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^5.0.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^6.0.2",
"mongoose": "^5.4.19",
"nyc": "^13.3.0"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.3.4"
}
}