-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 776 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
35
{
"name": "mongoose-user-plugin",
"description": "Add common user fonctionnality to document for signin, login and more",
"version": "0.0.4",
"author": "Damien Saillard",
"dependencies": {
"mongoose": "3.8.16"
, "moment": "2.8.3"
, "pwd": "0.0.4"
},
"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-user-plugin.git"
},
"engines": {
"node": ">0.8"
},
"main": "lib/index.js",
"scripts": {
"test": "make test",
"prepublish": "./node_modules/.bin/coffee -c -o ./lib/ src/"
}
}