forked from achingbrain/mongoose-crate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.19 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
54
{
"author": "Alex Potsides",
"name": "mongoose-crate",
"description": "Attach files to MongoDB models via Mongoose.js",
"keywords": [
"mongoose",
"s3",
"imagemagick",
"uploads",
"attachments",
"files"
],
"version": "1.0.10",
"homepage": "https://github.com/achingbrain/mongoose-crate",
"repository": {
"type": "git",
"url": "git://github.com/achingbrain/mongoose-crate.git"
},
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "istanbul cover _mocha && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"async": "^0.9",
"check-types": "^3.1.1",
"mmmagic": "^0.3"
},
"devDependencies": {
"coveralls": "^2.8",
"istanbul": "^0.3",
"mocha": "^2.1",
"mongoose": "3.8.21",
"pre-commit": "^1.0.6",
"should": "^6.0.0",
"sinon": "^1.9",
"tingodb": "^0.3.4",
"tungus": "^0.0.4"
},
"jshintConfig": {
"asi": true,
"browser": false,
"browserify": true,
"curly": false,
"expr": true,
"indent": 2,
"loopfunc": true,
"node": true,
"trailing": true,
"undef": true,
"white": true,
"mocha": true
}
}