-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "node-s3-image-uploader",
"version": "1.0.1",
"description": "A simple Node.js wrapper of the AWS SDK for uploading images to S3.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require @babel/register test/*.test.js",
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepare": "npm run build"
},
"author": "Sean van Mulligen <sean@vanmulligen.ca> (https://github.com/seanvm)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/seanvm/node-s3-image-uploader.git"
},
"keywords": [
"node",
"aws",
"s3",
"image",
"uploader",
"serverless"
],
"bugs": {
"url": "https://github.com/seanvm/node-s3-image-uploader/issues"
},
"homepage": "https://github.com/seanvm/node-s3-image-uploader#readme",
"dependencies": {
"aws-sdk": "^2.353.0",
"file-type": "^10.4.0",
"moment": "^2.22.2",
"randomstring": "^1.1.5",
"sha1": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"sinon": "^7.1.1"
}
}