forked from Turistforeningen/node-s3-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "s3-uploader",
"version": null,
"description": "Resize, rename, and upload images to AWS S3",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"codacy-coverage": "codacy-coverage",
"cover": "istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- -r test/support/env test/**",
"lint": "eslint index.js test",
"nsp": "nsp check",
"semantic-release": "semantic-release",
"start": "supervisor index.js",
"test": "mocha -b -c --check-leaks -R tap -r test/support/env test/**",
"test:watch": "mocha -w -b -c --check-leaks -R progress -r test/support/env test/**",
"greenkeeper-postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "git://github.com/Turistforeningen/node-s3-uploader.git"
},
"keywords": [
"aws",
"s3",
"imagemagic",
"image",
"resize",
"rename",
"upload",
"versions"
],
"author": "Den Norske Turistforening (DNT) <opensource@turistforeningen.no>",
"contributors": [
"Håvard Ranum <havard.ranum@bouvet.no>",
"Hans Kristian Flaatten <hans@starefossen.com>",
"Anthony Ringoet <anthonyringoet@gmail.com>",
"Luiz Freneda <lfreneda@gmail.com>",
"Oleksii Sribnyi <me@codemanki.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-s3-uploader/issues"
},
"homepage": "https://github.com/Turistforeningen/node-s3-uploader#readme",
"dependencies": {
"async": "^1.5.2",
"aws-sdk": "^2.4.1",
"im-metadata": "^3.0.0",
"im-resize": "^2.3.1",
"node-uuid": "^1.4.7"
},
"devDependencies": {
"@starefossen/rand-path": "^2.0.0",
"codacy-coverage": "^1.1.3",
"eslint": "^2.11.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"nsp": "^2.4.0",
"semantic-release": "^4.3.5"
},
"engines": {
"node": ">=4.0.0"
}
}