forked from feathersjs-ecosystem/feathers-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.32 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
{
"name": "feathers-mongoose",
"description": "A Feathers service adapter for the Mongoose ORM",
"version": "3.3.6",
"homepage": "https://github.com/feathersjs/feathers-mongoose",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"mongodb",
"mongo",
"mongoose",
"service"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/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/feathers-mongoose/issues"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && 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",
"compile": "rimraf lib/ && babel -d lib/ src/",
"start": "node example/app",
"watch": "babel --watch -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --compilers js:babel-core/register",
"test": "npm run compile && npm run jshint && npm run mocha && nsp check"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"feathers-errors": "^2.0.1",
"feathers-query-filters": "^1.5.1",
"uberproto": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-core": "^6.1.2",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.1.2",
"body-parser": "^1.14.1",
"chai": "^3.4.1",
"feathers": "^2.0.0-pre.4",
"feathers-hooks": "^1.1.0",
"feathers-rest": "^1.2.2",
"feathers-service-tests": "^0.5.3",
"feathers-socketio": "^1.3.3",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"mongoose": "^4.1.0",
"nsp": "^2.2.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}