File tree 4 files changed +17
-12
lines changed
4 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 131
131
132
132
# IDE
133
133
.idea
134
- .tool-versions
134
+ .tool-versions
Original file line number Diff line number Diff line change 1
1
src /
2
2
tests /
3
3
tsconfig.json
4
- node_modules /
4
+ node_modules /
Original file line number Diff line number Diff line change 3
3
"version" : " 0.0.1" ,
4
4
"description" : " Library for cdk/sst constructs utils" ,
5
5
"main" : " index.js" ,
6
+ "scripts" : {
7
+ "build" : " tsc" ,
8
+ "test" : " jest" ,
9
+ "prepare" : " npm run build"
10
+ },
11
+ "devDependencies" : {
12
+ "@types/jest" : " ^29.5.13" ,
13
+ "@types/node" : " ^22.7.6" ,
14
+ "eslint" : " ^9.12.0" ,
15
+ "jest" : " ^29.7.0" ,
16
+ "ts-node" : " ^10.9.2" ,
17
+ "typescript" : " ^5.6.3"
18
+ },
6
19
"keywords" : [
7
20
" cdk" ,
8
21
" sst" ,
15
28
},
16
29
"homepage" : " https://github.com/lablabs/cdk-constructs-serverless" ,
17
30
18
- "license" : " MIT" ,
19
- "devDependencies" : {
20
- "@types/jest" : " ^29.5.13" ,
21
- "@types/node" : " ^22.7.6" ,
22
- "eslint" : " ^9.12.0" ,
23
- "jest" : " ^29.7.0" ,
24
- "ts-node" : " ^10.9.2" ,
25
- "typescript" : " ^5.6.3"
26
- }
31
+ "license" : " MIT"
27
32
}
Original file line number Diff line number Diff line change 1
1
export function greet ( name : string ) : string {
2
2
return `Hello, ${ name } !` ;
3
- }
3
+ }
You can’t perform that action at this time.
0 commit comments