-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 755 Bytes
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
{
"name": "mongoose-rattle-plugin",
"description": "Add social interactions (messages and likes) to mongoose document",
"version": "0.4.2",
"author": "Damien Saillard",
"dependencies": {
"mongoose": "3.8.x"
, "moment": "2.8.3"
},
"devDependencies": {
"should": "1.2.2"
, "sinon": "v1.7.3"
, "mocha": "1.12.1"
, "async": "0.2.5"
, "coffee-script": "1.5.0"
},
"keywords": [
"nodeJs"
, "MongooseJs"
, "plugin"
],
"repository": {
"type": "git",
"url": "git@github.com:daemon1981/mongoose-rattle-plugin.git"
},
"engines": {
"node": ">0.10"
},
"main": "lib/index.js",
"scripts": {
"test": "make test",
"prepublish": "./node_modules/.bin/coffee -c -o ./lib/ src/"
}
}