-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "terrapi",
"version": "1.1.3",
"description": "A CLI tool to scaffold Terraform projects with best practices.",
"main": "dist/index.js",
"bin": {
"terrapi": "dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"dev": "nodemon src/index.ts",
"test": "jest",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"terraform",
"cli",
"scaffold",
"iac",
"devops"
],
"author": "",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^8.0.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"ejs": "^3.1.9",
"fs-extra": "^11.2.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}