-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "feathers-mongodb",
"description": "Feathers MongoDB service",
"version": "1.1.0",
"homepage": "https://github.com/feathersjs/feathers-mongodb",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-mongodb.git"
},
"bugs": {
"url": "https://github.com/feathersjs/feathers-mongodb/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"mongo",
"mongoskin",
"mongodb",
"service"
],
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "http://feathersjs.com"
},
"contributors": [
"Eric Kryski <e.kryski@gmail.com> (http://erickryski.com)",
"David Luecke <daff@neyeon.de> (http://neyeon.com)",
"Marshall Thompson <marshall@creativeideal.net>"
],
"main": "lib/",
"scripts": {
"publish": "git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"jshint": "jshint lib/. test/. --config",
"mocha": "mocha test/ --recursive",
"test": "npm run jshint && npm run mocha && nsp check"
},
"engines": {
"node": "~0.10.0",
"npm": "~1.4.0"
},
"dependencies": {
"feathers-errors": "^1.1.6",
"feathers-query-filters": "^1.1.1",
"lodash": "^3.10.0",
"mongodb": "^1.4.0",
"mongoskin": "^1.4.13",
"uberproto": "~1.1.2"
},
"devDependencies": {
"body-parser": "^1.4.3",
"chai": "^1.7.2",
"database-cleaner": "~0.7.0",
"feathers": "^1.1.0",
"feathers-service-tests": "^0.3.0",
"jshint": "^2.7.0",
"mocha": "^1.12.1",
"nsp": "^2.2.0"
}
}