-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
53
54
55
56
57
58
59
{
"name": "cdk-github-deploy",
"version": "1.0.0",
"description": "Deploys a AWS CloudFormation stack",
"main": "lib/main.js",
"scripts": {
"dist": "tsc && ncc build",
"test": "DEBUG=jest eslint **/*.ts && jest --coverage --verbose",
"fix": "eslint **/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnny-human/cdk-github-deploy.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "AWS",
"contributors": [
{
"name": "John Wennstrøm",
"email": "john.wennstrom@protonmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/johnny-human/cdk-github-deploy/issues"
},
"homepage": "https://github.com/johnny-human/cdk-github-deploy#readme",
"dependencies": {
"@actions/core": "1.10.0",
"aws-sdk": "2.1237.0",
"cdk-assets": "^2.62.2",
"fs": "^0.0.1-security",
"p-limit": "^3.1.0",
"short-unique-id": "^4.4.4"
},
"devDependencies": {
"@types/jest": "29.2.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"@zeit/ncc": "0.22.3",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-github": "4.4.0",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.2.1",
"jest-circus": "29.2.1",
"js-yaml": "4.1.0",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
}
}