-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.11 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
{
"name": "serverless-image-resizer",
"version": "0.1.1",
"description": "Serverless Image Resizer",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"test:coverage": "./node_modules/.bin/jest --coverage"
},
"author": "Nick Gubbins <[email protected]> && Marcus Molchany <[email protected]>",
"license": "MIT",
"repository" : {
"type" : "git",
"url" : "https://github.com/nicholasgubbins/Serverless-Image-Resizer"
},
"dependencies": {
"aws-sdk": "^2.22.0",
"bluebird": "^3.3.4",
"gm": "^1.21.1",
"s3-upload-stream": "^1.0.7"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.4",
"serverless-plugin-browserify": "^1.1.3"
}
}