-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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": "@monim67/s3-sync-deploy-action",
"description": "AWS CDK Codepipeline Action construct to deploy website to s3 deleting old files",
"version": "0.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"author": {
"name": "Munim Munna",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/monim67/s3-sync-deploy-action.git",
"type": "git"
},
"keywords": [
"awscdk",
"aws-cdk"
],
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"src/**/*.py"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint lib --ext ts --ignore-pattern \"lib/**/*.d.ts\"",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "18.14.6",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"aws-cdk-lib": "2.68.0",
"constructs": "^10.0.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.5",
"typescript": "~4.9.5"
},
"peerDependencies": {
"aws-cdk-lib": "2.68.0",
"constructs": "^10.0.0"
}
}