-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.38 KB
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
48
49
50
51
52
53
54
55
56
57
{
"name": "@andersonfpcorrea/cdk-init",
"version": "1.5.0",
"private": false,
"description": "A bootstrap CLI for creating opinionated AWS CDK apps.",
"main": ".dist/index.js",
"bin": {
"cdk-init": "bin/cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"prepare": "node .husky/install.mjs",
"release": "semantic-release"
},
"keywords": [
"cdk",
"aws",
"scaffolding",
"bootstrap"
],
"author": "Anderson Correa",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/andersonfpcorrea/cdk-init.git"
},
"dependencies": {
"execa": "^9.6.1",
"fs-extra": "^11.3.3",
"inquirer": "^13.2.0",
"ora": "^9.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.0.9",
"@types/yargs": "^17.0.35",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"semantic-release": "^25.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
}
}