This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
forked from feathersjs-ecosystem/feathers-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.38 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
{
"name": "feathers-mongodb-aggregate",
"description": "Feathers MongoDB service - aggregate",
"version": "6.5.1",
"homepage": "https://github.com/sainf/feathers-mongodb-aggregate",
"repository": {
"type": "git",
"url": "git://github.com/sainf/feathers-mongodb-aggregate.git"
},
"bugs": {
"url": "https://github.com/sainf/feathers-mongodb-aggregate.git/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"mongo",
"mongoskin",
"mongodb",
"service",
"aggregate"
],
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "http://feathersjs.com"
},
"contributors": [
"Eric Kryski <[email protected]> (http://erickryski.com)",
"David Luecke <[email protected]> (http://neyeon.com)",
"Marshall Thompson <[email protected]>",
"Carlos Nogueira <[email protected]>"
],
"main": "lib/",
"types": "types",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/**",
"*.d.ts",
"*.js"
],
"scripts": {
"changelog": "github_changelog_generator --user feathersjs-ecosystem --project feathers-mongodb && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"lint": "semistandard --fix",
"dtslint": "dtslint types",
"update-dependencies": "ncu -u",
"mocha": "mocha --recursive test/ --exit",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run dtslint && npm run coverage",
"mongodb": "run-rs -v 4.0.0"
},
"semistandard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.11",
"@feathersjs/commons": "^4.5.11",
"@feathersjs/errors": "^4.5.11"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/socketio": "^4.5.11",
"chai": "^4.3.4",
"dtslint": "^4.2.1",
"mocha": "^9.1.3",
"mongodb": "^4.2.2",
"npm-check-updates": "^12.0.5",
"nyc": "^15.1.0",
"run-rs": "^0.7.5",
"semistandard": "^16.0.1",
"typescript": "^4.5.4"
}
}