-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1004 Bytes
/
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
{
"name": "json-to-pretty-hcl",
"version": "0.0.2",
"description": "Convert JSON to pretty OpenTofu/Terraform jsonencode() calls",
"main": "index.mjs",
"bin": {
"json-to-pretty-hcl": "./index.mjs"
},
"engines": {
"node" : ">=13.0.0"
},
"scripts": {
"cloudflare-pages-build": "mkdir -p website-dist && cp -rv index.html modules vendor website-dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
"./*": "./modules/*.mjs"
},
"repository": "github:karolba/json-to-pretty-hcl",
"keywords": [
"json",
"jsonencode",
"terraform",
"tofu",
"pretty"
],
"author": {
"name": "Karol Baraniecki",
"url": "https://baraniecki.eu"
},
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/karolba/json-to-pretty-hcl/issues"
},
"homepage": "https://json-to-pretty-jsonencode.baraniecki.eu/",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}