forked from efipay/sdk-node-apis-efi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·31 lines (31 loc) · 909 Bytes
/
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
{
"name": "sdk-node-apis-efi-lambda",
"description": "Fork of the Efí SDK Node.js, with less boilarplate, and to execute on AWS Lambda using serverless platform",
"version": "0.0.1",
"main": "handler.js",
"scripts": {
"deploy": "serverless deploy",
"logs": "serverless logs -f parser -t"
},
"author": "Luiz Couto <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"aws-sdk": "^2.451.0",
"axios": "^0.18.0",
"babel-runtime": "^6.26.0",
"lambda-api": "^0.10.5"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-source-map-support": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"serverless-offline": "^8.3.1",
"serverless-stage-manager": "^1.0.5",
"serverless-webpack": "^5.1.0",
"webpack": "^4.16.2",
"webpack-node-externals": "^1.6.0"
}
}