-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.62 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
91
92
93
94
95
96
97
{
"name": "@awboost/cfn-web-resources",
"version": "0.2.1",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/awboost/cfn-web-resources.git"
},
"homepage": "https://github.com/awboost/cfn-web-resources#readme",
"author": {
"email": "gordonmleigh@gmail.com",
"name": "Gordon Leigh"
},
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"dist/*.zip",
"lib/",
"cjs/",
"src/"
],
"scripts": {
"build": "npm run clean && npm run compile && npm run lint && npm run bundle",
"bundle": "cfnassets build --config assets.config.json",
"clean": "rm -rf dist/ lib/ *.tsbuildinfo",
"compile": "npm run index && tsc",
"index": "node makeIndex.js src/",
"lint": "eslint src/ --ext=ts",
"watch:compile": "tsc -w"
},
"devDependencies": {
"@awboost/cfn-custom-resource": "^0.1.1",
"@awboost/cfntypes": "^0.100.9",
"@aws-sdk/client-acm": "^3.645.0",
"@aws-sdk/client-dynamodb": "^3.648.0",
"@aws-sdk/client-route-53": "^3.645.0",
"@aws-sdk/client-s3": "^3.645.0",
"@aws-sdk/lib-storage": "^3.645.0",
"@fmtk/decoders": "^0.5.2",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.escaperegexp": "^4.1.7",
"@types/micromatch": "^4.0.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.18.13",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"builtin-modules": "^3.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint": "^8.9.0",
"lodash.escaperegexp": "^4.1.2",
"micromatch": "^4.0.5",
"mime-types": "^2.1.35",
"prettier": "^3.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup": "^2.79.1",
"typescript": "~5.2",
"yauzl": "^2.10.0"
},
"dependencies": {
"@awboost/cfnassets": "^0.6.0",
"@awboost/cfntemplate": "^0.6.0",
"lodash.clonedeep": "^4.5.0"
},
"bundles": {
"auto-cert": {
"path": "dist/auto-cert.zip"
},
"empty-bucket": {
"path": "dist/empty-bucket.zip"
},
"get-stream-arn": {
"path": "dist/get-stream-arn.zip"
},
"put-object": {
"path": "dist/put-object.zip"
},
"unpack-asset": {
"path": "dist/unpack-asset.zip"
}
}
}