-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·53 lines (53 loc) · 1.35 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
{
"name": "@aliatech/loopback-mongo-aggregate-mixin",
"version": "1.1.3",
"description": "Loopback mixin to query MongoDB aggregation pipeline and build the instances from results",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Juan Costa (ALIA Technologies)",
"email": "[email protected]",
"social": "Akeri",
"url": "http://alialabs.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aliatech/loopback-mongo-aggregate-mixin.git"
},
"scripts": {
"lint": "eslint lib",
"lint-fix": "eslint --fix lib",
"test": "mocha",
"test-with-coverage": "nyc --reporter=text --reporter=text-summary --reporter=html mocha",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"main": "index.js",
"keywords": [
"node",
"loopback",
"mixin",
"orm",
"mongodb",
"aggregate",
"aggregation",
"pipeline"
],
"dependencies": {
"find-node-modules": "^2.0.0",
"lodash": "^4.17.11",
"polygoat": "^1.1.4"
},
"devDependencies": {
"@aliatech/eslint-config-aliatech": "^0.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.15.1",
"loopback": "^3.25.0",
"loopback-boot": "^2.27.1",
"loopback-connector-mongodb": "^3.9.2",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"should": "^13.2.3"
}
}