-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 898 Bytes
/
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
{
"name": "checked-aws-custom-resource",
"version": "0.1.7",
"main": "src/index.js",
"scripts": {
"test": "jest tests/test.ts",
"build": "tsc",
"lint": "tslint *.ts{,x}"
},
"repository": {
"type": "git",
"url": "git://github.com/Spacerat/checked-aws-custom-resource"
},
"author": "Joseph Atkins-Turkish",
"license": "ISC",
"description": "A CDK AwsCustomResource wrapper which checks that its specified SDK function exists",
"devDependencies": {
"@aws-cdk/assert": "^1.2.0",
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"types": "src/index.d.ts",
"prepublish": "tsc",
"dependencies": {
"@aws-cdk/core": "^1.2.0",
"@aws-cdk/custom-resources": "^1.2.0",
"aws-sdk": "^2.501.0"
}
}