-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 906 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
32
33
34
35
36
37
38
{
"name": "generate-serverless-endpoints",
"version": "1.1.0",
"description": "Stub serverless API endpoints via command-line questionnaire",
"bin": {
"generate-serverless-endpoints": "index.js",
"generate-sls-endpoints": "index.js",
"generate-sls-endpoint": "index.js",
"generate-endpoints": "index.js",
"generate-endpoint": "index.js"
},
"scripts": {
"start": "node index.js",
"lint": "npx eslint *.js"
},
"keywords": [
"serverless",
"generate",
"generator",
"api",
"endpoint",
"endpoints"
],
"license": "ISC",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.26.0"
},
"dependencies": {
"camelcase": "^5.3.1",
"chalk": "^4.1.2",
"fs-jetpack": "^2.4.0",
"inquirer": "^7.3.3",
"loud-rejection": "^2.2.0",
"xregexp": "^4.4.1"
}
}