-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "@factbird/drata-cdk-stackset",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/FactbirdHQ/drata-cdk-stackset.git"
},
"author": "martinjlowm <[email protected]>",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"imports": {
"#@/*": {
"development": ["./src/*", "./src/*.ts"],
"default": ["./dist/*", "./dist/*.js"]
}
},
"scripts": {
"test": "jest test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"aws-cdk-lib": "^2.173.2",
"cdk-stacksets": "^0.0.150",
"constructs": "^10.4.2"
},
"peerDependencies": {
"aws-cdk-lib": "^2.173.2",
"cdk-stacksets": "^0.0.150",
"constructs": "^10.4.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^5.7.2"
}
}