-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@awboost/cfn-template-builder",
"version": "0.4.3",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"description": "Zero-dependency package for building AWS CloudFormation Templates",
"repository": {
"type": "git",
"url": "https://github.com/awboost/cfn-template-builder"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": {
"name": "Gordon Leigh"
},
"files": [
"src/",
"lib/",
"!*.test.*"
],
"scripts": {
"build": "npm run clean && npm run compile && npm run test && npm run lint",
"clean": "rm -rf lib/ *.tsbuildinfo",
"compile": "tsc",
"coverage": "c8 --src src/ --all -r text -r lcovonly node --import=@swc-node/register/esm-register --test-reporter=dot --test 'src/**/*.test.ts'",
"lint": "eslint 'src/**/*.ts'",
"preversion": "npm run build",
"test": "node --enable-source-maps --import=@swc-node/register/esm-register --test 'src/**/*.test.ts'",
"watch:compile": "tsc --watch --incremental",
"watch:test": "node --enable-source-maps --watch --import=@swc-node/register/esm-register --test 'src/**/*.test.ts'"
},
"exports": {
"./template/*": {
"types": "./lib/template/*.d.ts",
"default": "./lib/template/*.js"
},
"./util/*": {
"types": "./lib/util/*.d.ts",
"default": "./lib/util/*.js"
},
"./builder": {
"types": "./lib/builder.d.ts",
"default": "./lib/builder.js"
},
"./compatibility": {
"types": "./lib/compatibility.d.ts",
"default": "./lib/compatibility.js"
},
"./emitter": {
"types": "./lib/emitter.d.ts",
"default": "./lib/emitter.js"
},
"./intrinsics": {
"types": "./lib/intrinsics.d.ts",
"default": "./lib/intrinsics.js"
},
"./policy": {
"types": "./lib/policy.d.ts",
"default": "./lib/policy.js"
},
"./pseudo": {
"types": "./lib/pseudo.d.ts",
"default": "./lib/pseudo.js"
},
"./stack": {
"types": "./lib/stack.d.ts",
"default": "./lib/stack.js"
},
"./template": {
"types": "./lib/template.d.ts",
"default": "./lib/template.js"
}
},
"devDependencies": {
"@awboost/eslint-config": "^0.1.0",
"@swc-node/register": "^1.9.0",
"@types/node": "^18.18.13",
"@types/ssri": "^7.1.5",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"prettier": "^3.1.0"
},
"dependencies": {
"ssri": "^10.0.5"
}
}