-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{ "name": "mongoose-file"
, "description": "Mongoose plugin adding a file field to a schema - useful for nodejs file uploads"
, "version": "0.0.2"
, "homepage": "https://github.com/panta/mongoose-file"
, "author": "Marco Pantaleoni <[email protected]>"
, "dependencies": {
"mongoose": ">= 3.0.1"
, "mkdirp": ">= 0.3.4"
}
, "devDependencies": {
"coffee-script": ">= 1.3.3"
, "muffin": ">= 0.6.2"
, "glob": ">= 3.0.1"
, "mocha": ">= 1.4.2"
, "chai": ">= 1.2.0"
}
, "keywords": ["mongoose", "plugin", "plugins", "types", "file", "upload", "express"]
, "repository": {
"type": "git"
, "url": "git://github.com/panta/mongoose-file.git"
}
, "bugs": {
"url" : "https://github.com/panta/mongoose-file/issues"
}
, "licenses": [{
"type": "MIT",
"url": "https://raw.github.com/panta/mongoose-file/master/LICENSE"
}]
, "directories" : {
"lib" : "./lib"
, "test" : "./test"
}
, "scripts": {
"watch": "coffee -c -w -o lib src"
, "prepublish": "cake build"
, "test": "NODE_ENV=test node_modules/.bin/mocha --compilers coffee:coffee-script --timeout 10000 -R spec test/*.coffee"
}
, "main": "lib/index.js"
, "engines": {
"node": ">= 0.6.0"
, "npm": ">= 1.0.0"
}
}