-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.17 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.17 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@hexlabs/cloudformation-ts",
"description": "A Typescript way to build CloudFormation",
"license": "Apache-2.0",
"version": "1.0.0",
"main": "dist/cloudformation/cloudformation.js",
"types": "dist/cloudformation/cloudformation.d.ts",
"type": "module",
"bin": {
"cloudformation-ts": "dist/cloudformation/cli/index.js",
"cfts": "dist/cloudformation/cli/index.js"
},
"keywords": [
"cloudformation",
"typescript",
"aws",
"infrastructure"
],
"scripts": {
"run": "ts-node --project tsconfig.json test/deploy-test.ts",
"prebuild": "rimraf dist",
"pregenerate": "rimraf src/cloudformation/aws-resources.ts src/aws src/alexa",
"generate": "node --loader ts-node/esm --no-warnings src/cloudformation/builder/discovery.ts",
"build": "tsc",
"test": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit",
"lint": "eslint **/*.ts"
},
"files": [
"dist",
"src/cloudformation/cli",
"tsconfig.json"
],
"exclude": [
"node_modules",
"dist"
],
"eslintIgnore": [
"webpack.config.js"
],
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint/eslint-plugin",
"jest"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-empty-function": 0
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlabsio/kloudformation-ts.git"
},
"author": "hexlabs",
"bugs": {
"url": "https://github.com/hexlabsio/typescript-template/issues"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"reporters": [
"default",
"jest-junit"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"homepage": "https://github.com/hexlabsio/kloudformation-ts#readme",
"devDependencies": {
"@types/archiver": "^5.1.0",
"@types/aws-lambda": "^8.10.76",
"@types/commonmark": "^0.27.4",
"@types/jest": "^24.9.1",
"@types/node": "^16.11.48",
"@types/request-promise": "^4.1.46",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"beautiful-dom": "^1.0.7",
"commonmark": "^0.29.1",
"eslint": "^8.51.0",
"eslint-plugin-jest": "^23.1.1",
"husky": "^6.0.0",
"jest": "^28.1.3",
"jest-junit": "^10.0.0",
"jsdom": "^16.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.0"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.428.0",
"@aws-sdk/client-s3": "^3.428.0",
"archiver": "^5.3.0",
"aws-sdk": "^2.1194.0",
"axios": "^1.7.7",
"body-parser": "^1.19.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"express": "^4.17.1",
"path": "^0.12.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}