-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"name": "infra-diff",
"version": "1.0.0",
"description": "human readable diffs from IaC plans",
"main": "dist/index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run test:e2e:file-reading",
"test:e2e:file-reading": "vitest run e2e/file-reading.test.ts",
"build": "ncc build src/index.ts -o dist --minify --no-source-map-register",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:workflows": "actionlint .github/workflows/*.yml",
"lint:yaml": "yamllint .",
"format": "biome format --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/zpratt/infra-diff.git"
},
"keywords": [
"pull-request",
"comments",
"terraform",
"terragrunt",
"opentofu",
"github-action"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zpratt/infra-diff/issues"
},
"homepage": "https://github.com/zpratt/infra-diff#readme",
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@github/local-action": "^6.0.2",
"@types/chance": "^1.1.7",
"@types/node": "^24.9.2",
"@vercel/ncc": "^0.38.4",
"@vitest/ui": "^4.0.6",
"chance": "^1.1.13",
"typescript": "^5.9.3",
"vitest": "^4.0.6"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
}
}