-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "cloud-crafter-cli",
"version": "1.2.0-beta.5",
"description": "CloudCrafter CLI is a command-line interface tool that provides templates for common cloud resources to help you get started quickly.",
"main": "src/index.js",
"bin": {
"cloud-crafter-cli": "src/index.js",
"ccc": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"lint": "npx eslint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielmissio/cloud-crafter-cli.git"
},
"keywords": [
"cli",
"cloud",
"serverless",
"serverless-framework",
"cloudformation",
"infra-as-code"
],
"author": "Gabriel Missio",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielmissio/cloud-crafter-cli/issues"
},
"homepage": "https://github.com/gabrielmissio/cloud-crafter-cli#readme",
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2"
},
"dependencies": {
"commander": "^10.0.1",
"cross-fetch": "^3.1.5",
"fs-extra": "^11.1.1"
}
}