-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "tfvm",
"version": "2.0.1",
"description": "Terraform Version Manager",
"author": {
"name": "Anindya Dey",
"url": "https://anindyadey.com"
},
"type": "module",
"repository": {
"type": "git",
"directory": "https://github.com/anindya-dey/tfvm.git",
"url": "https://github.com/anindya-dey/tfvm"
},
"bugs": {
"url": "https://github.com/anindya-dey/tfvm/issues"
},
"preview": true,
"bin": {
"tfvm": "./.dist/tfvm.min.js"
},
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"cheerio": "1.0.0-rc.12",
"commander": "^11.1.0",
"download": "^8.0.0",
"got": "^13.0.0",
"inquirer": "^9.2.12",
"rc": "^1.2.8",
"update-notifier": "^7.0.0"
},
"keywords": [
"cli",
"tfvm",
"terraform",
"terraform-manager",
"terraform-version-manager",
"agent-andy",
"anindya-dey",
"anindya"
],
"scripts": {
"build": "tsc && esbuild ./.dist/main.js --platform=node --external:./node_modules/* --bundle --minify --outfile=./.dist/tfvm.min.js",
"build:dev": "rm -rf ./.dist && pnpm lint && pnpm build && pnpm link ./.dist",
"lint": "prettier --end-of-line crlf --write .",
"prepare": "is-ci || husky install",
"tfvm:help": "node .dist/tfvm.min.js --help",
"test": "jest --verbose",
"tsc:init": "tsc --init"
},
"engines": {
"node": ">= 16.14.0"
},
"files": [
"./.dist/tfvm.min.js"
],
"devDependencies": {
"@types/download": "^8.0.5",
"@types/got": "^9.6.12",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.2",
"@types/rc": "^1.2.4",
"@types/update-notifier": "^6.0.8",
"esbuild": "^0.19.6",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}