-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 761 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 761 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-timestamp",
"description": "Mongoose plugin that adds createdAt and updatedAt auto-assigned date properties",
"version": "0.6.0",
"author": "Nicholas Penree <[email protected]>",
"keywords": [
"mongodb",
"mongoose",
"plugin",
"timestamps",
"createdAt",
"updatedAt"
],
"repository": {
"type": "git",
"url": "git://github.com/drudge/mongoose-timestamp"
},
"devDependencies": {
"mocha": "~2.5.3",
"mongoosastic": "^4.0.2",
"mongoose": "~4.5.3",
"request": "^2.72.0",
"should": "~9.0.2"
},
"scripts": {
"test": "mocha -u bdd -R spec -c ./test/*test.js"
},
"license": "MIT",
"engine": {
"node": ">= 0.6"
},
"dependencies": {
"defaults": "^1.0.3"
}
}