-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.56 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": "@space48/cloud-seed",
"version": "4.0.0",
"description": "Cloud infrastructure automation tool that uses Terraform CDK.",
"main": "dist/index.js",
"bin": {
"cloud-seed": "dist/bin/entrypoint.js"
},
"files": [
"dist/**/*",
"schemas"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": "https://github.com/Space48/cloud-seed",
"scripts": {
"prepare": "husky",
"prebuild": "rimraf .gen && cdktf get",
"prepublishOnly": "npm run build",
"build": "rimraf dist && tsc",
"lint": "eslint --fix './**/*.ts'",
"lint:ci": "eslint './**/*.ts'",
"test": "jest --passWithNoTests --coverage"
},
"engines": {
"node": ">=20"
},
"author": "Ash Smith <[email protected]>",
"license": "ISC",
"dependencies": {
"@cdktf/provider-archive": "^10.3.0",
"@cdktf/provider-google": "^14.11.0",
"arg": "^5.0.2",
"cdktf": "^0.20.10",
"cdktf-cli": "^0.20.10",
"constructs": "^10.4.2",
"esbuild": "^0.24.0",
"glob": "^11.0.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.10.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.17.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}