-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "greenops-cli",
"version": "0.7.0",
"description": "Carbon footprint linting for Terraform plans \u2014 AWS, Azure, and GCP. Analyses infrastructure changes for Scope 2, Scope 3, and water impact. Posts recommendations directly on GitHub PRs.",
"main": "dist/index.cjs",
"bin": {
"greenops-cli": "dist/index.cjs"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "tsx --test ./*.test.ts ./formatters/*.test.ts",
"typecheck": "tsc --noEmit",
"build": "esbuild cli.ts --bundle --platform=node --target=node20 --outfile=dist/index.cjs --format=cjs --banner:js=\"#!/usr/bin/env node\"",
"prepack": "npm run build"
},
"keywords": [
"terraform",
"carbon",
"co2",
"greenops",
"cloud",
"aws",
"azure",
"gcp",
"multi-cloud",
"sustainability",
"devops",
"ci",
"github-actions",
"infrastructure",
"carbon-footprint",
"green-cloud",
"finops"
],
"author": "Grafikui Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/omrdev1/greenops-cli.git"
},
"homepage": "https://github.com/omrdev1/greenops-cli#readme",
"bugs": {
"url": "https://github.com/omrdev1/greenops-cli/issues"
},
"devDependencies": {
"@types/node": "^20.0.0",
"esbuild": "^0.20.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0"
}
}