-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 801 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 801 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
{
"name": "apex-api-gateway",
"version": "0.4.0",
"licence": "MIT",
"description": "Create and deploy your Apex project on AWS API Gateway using Swagger configuration",
"keywords": [
"apex",
"swagger",
"aws lambda",
"aws api gateway",
"cli"
],
"author": "Alexis Launay <yorunohikage@gmail.com> (http://yorunohikage.fr)",
"repository": "YoruNoHikage/apex-api-gateway",
"scripts": {
"compile": "babel --presets es2015 -d lib/ src/",
"prepare": "npm run compile"
},
"dependencies": {
"aws-sdk": "^2.5.2",
"lodash.defaultsdeep": "^4.5.1",
"lodash.topairs": "^4.3.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0"
},
"bin": {
"apex-api-gateway": "lib/index.js"
}
}