-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "@genstackio/tf",
"version": "0.0.0",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"description": "TF wrapper",
"author": {
"name": "Olivier Hoareau",
"email": "[email protected]"
},
"directories": {
"lib": "lib",
"test": "test",
"bin": "bin"
},
"files": [
"lib",
"bin"
],
"scripts": {
"build": "tsc",
"lint": "eslint --color",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"test": "jest",
"test:unit": "jest",
"test:unit:cov": "jest --coverage",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"@types/ejs": "^3.1.5",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"semantic-release": "^24.1.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.1.0",
"prettier": "^3.3.3"
},
"dependencies": {
"@types/node": "^20.16.3",
"typescript": "^5.5.4",
"handlebars": "^4.7.6",
"ejs": "^3.1.10"
},
"bin": {
"tfgen": "./bin/tfgen",
"tflayer": "./bin/tflayer",
"generate-vars-from-terraform-outputs": "./bin/generate-vars-from-terraform-outputs"
}
}