-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 869 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 869 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
{
"author": "Firebase.co <npm@firebase.co> (http://www.firebase.co/)",
"name": "mongoose-attachments",
"description": "Mongoose.js Attachments plugin. Supports ImageMagick styles",
"keywords": [
"mongoose",
"s3",
"imagemagick",
"uploads",
"attachments"
],
"version": "0.1.0",
"homepage": "https://github.com/firebaseco/mongoose-attachments",
"repository": {
"type": "git",
"url": "git://github.com/firebaseco/mongoose-attachments.git"
},
"main": "index.js",
"scripts": {
"test": "npm run specs && node ./test/testFindImageMagickFormats.js",
"specs": "./node_modules/.bin/mocha test/**/*.spec.js"
},
"dependencies": {
"async": "0.1.x",
"imagemagick": "0.1.x"
},
"devDependencies": {
"mongoose": "^3.8.9",
"mocha": "^1.18.2",
"chai": "^1.9.1"
},
"engines": {
"node": "*"
}
}