forked from feathersjs-ecosystem/feathers-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.62 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
90
91
92
93
94
95
96
{
"name": "feathers-mongoose",
"description": "A Feathers service adapter for the Mongoose ORM",
"version": "8.5.1",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-mongoose",
"main": "lib/",
"types": "types",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"mongodb",
"mongo",
"mongoose",
"service"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-mongoose.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [
"Eric Kryski <[email protected]> (http://erickryski.com)",
"Glavin Wiechert <[email protected]> (https://github.com/Glavin001)",
"Marshall Thompson <[email protected]> (https://github.com/marshallswain)"
],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-mongoose/issues"
},
"engines": {
"node": ">= 12"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/**",
"*.d.ts",
"*.js"
],
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator --user feathersjs-ecosystem --project feathers-mongoose && 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",
"mongodb": "run-rs -v 4.0.0",
"lint": "semistandard --fix",
"dtslint": "dtslint types",
"mocha": "mocha --timeout 5000 --recursive test/ --exit",
"update-dependencies": "ncu -u",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"peerDependencies": {
"mongoose": ">=6.0.14"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.15",
"@feathersjs/commons": "^4.5.15",
"@feathersjs/errors": "^4.5.15"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/socketio": "^4.5.15",
"chai": "^4.3.6",
"dtslint": "^4.2.1",
"mocha": "^10.0.0",
"mongoose": "^6.5.4",
"npm-check-updates": "^16.0.6",
"nyc": "^15.1.0",
"run-rs": "^0.7.7",
"semistandard": "^16.0.1",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"typescript": "^4.8.2"
}
}