forked from feathersjs-ecosystem/feathers-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "feathers-mongodb",
"description": "Feathers MongoDB service",
"version": "6.1.0",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-mongodb",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-mongodb.git"
},
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-mongodb/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"mongo",
"mongoskin",
"mongodb",
"service"
],
"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]>"
],
"main": "lib/",
"types": "types",
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && 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",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"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.2",
"@feathersjs/commons": "^4.5.3",
"@feathersjs/errors": "^4.5.3"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.2",
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/socketio": "^4.5.4",
"@types/mongodb": "^3.5.14",
"chai": "^4.2.0",
"dtslint": "^3.4.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^7.1.2",
"mongodb": "^3.5.7",
"run-rs": "^0.6.2",
"semistandard": "^14.2.0"
}
}