-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.34 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
{
"author": "Martin Wawrusch <martin@wawrusch.com> (http://martinatsunset.com)",
"name": "mongoose-plugins-created-by",
"description": "Adds a createdBy field to a schema.",
"version": "0.4.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/codedoctor/mongoose-plugins-created-by.git"
},
"bin": {},
"directories": {
"lib": "./lib",
"test": "./test"
},
"keywords": [
"errors"
],
"scripts": {
"prepublish": "coffee -c -o lib src;./bin/docs",
"test": "coffee -c -o lib src;NODE_ENV=test node_modules/.bin/mocha --timeout 10000 -R spec test/*.coffee"
},
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"underscore": ">=1.4.2",
"mongoose": ">=3.4.0"
},
"devDependencies": {
"async": "0.2.9",
"coffee-script": "1.6.3",
"should": "2.1.1",
"mocha": "1.15.1",
"codo": "2.0.2",
"grunt": "0.4.1",
"grunt-cli": "0.1.9",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-watch": "0.5.3",
"grunt-release": "0.6.0",
"grunt-contrib-coffee": "0.7.0"
},
"bugs": {
"url": "http://github.com/codedoctor/mongoose-plugins-created-by/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/codedoctor/mongoose-plugins-created-by/raw/master/LICENSE"
}
]
}