-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "@awboost/cfndeploy",
"version": "0.2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/awboost/cfndeploy.git"
},
"homepage": "https://github.com/awboost/cfndeploy#readme",
"author": {
"email": "[email protected]",
"name": "Gordon Leigh"
},
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.map",
"!lib/**/*.test.*",
"src/**/*.ts",
"!src/**/*.test.ts"
],
"scripts": {
"build": "npm run clean && npm run index && npm run compile && npm run lint",
"clean": "rm -rf docs/ lib/ *.tsbuildinfo",
"compile": "npm run index && tsc",
"index": "node makeIndex.js src/",
"lint": "eslint src/ --ext=ts",
"watch:compile": "tsc -w"
},
"devDependencies": {
"@types/node": "^18.18.13",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript": "~5.2"
},
"dependencies": {
"@awboost/cfnassets": "^0.6.0",
"@awboost/cfntemplate": "^0.6.0",
"@aws-sdk/client-cloudformation": "^3.92.0",
"@aws-sdk/client-s3": "^3.92.0",
"@aws-sdk/lib-storage": "^3.92.0",
"@aws-sdk/middleware-retry": "^3.80.0",
"@aws-sdk/types": "^3.78.0",
"@fmtk/decoders": "^0.5.2",
"@supercharge/promise-pool": "^2.1.0",
"tiny-typed-emitter": "^2.1.0",
"uuid": "^8.3.2"
}
}