This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "feathers-mongoose-advanced",
"description": "A Feathers service adapter for the Mongoose ORM",
"version": "2.1.2",
"homepage": "https://github.com/feathers-plus/feathers-mongoose-advanced",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"mongodb",
"mongo",
"mongoose",
"service"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathers-plus/feathers-mongoose-advanced.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)",
"Matt Chaffe <[email protected]> (https://github.com/Mattchewone)",
"Marshall Thompson <[email protected]> (https://github.com/marshallswain)"
],
"bugs": {
"url": "https://github.com/feathers-plus/feathers-mongoose-advanced/issues"
},
"engines": {
"node": ">= 4"
},
"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",
"start": "node example/app",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"feathers-commons": "^0.8.4",
"feathers-errors": "^2.0.1",
"feathers-query-filters": "^2.1.2",
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.3.0",
"uberproto": "^1.2.0"
},
"devDependencies": {
"body-parser": "^1.14.1",
"chai": "^4.0.0",
"eslint-if-supported": "^1.0.1",
"feathers": "^2.0.0",
"feathers-hooks": "^2.0.0",
"feathers-rest": "^1.5.2",
"feathers-service-tests": "^0.10.0",
"feathers-socketio": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.0",
"mongoose": "^4.10.4",
"rimraf": "^2.5.2",
"semistandard": "^11.0.0",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0"
}
}