-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 822 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 822 Bytes
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
{
"name": "aws-github-pages",
"version": "0.1.0",
"bin": {
"aws-github-pages": "bin/aws-github-pages.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"deploy:pre": "ts-node lib/aws-github-pages-pre-deployment.ts",
"deploy:post": "ts-node lib/aws-github-pages-post-deployment.ts",
"deploy:cdk": "cdk deploy",
"deploy": "npm run deploy:pre && npm run deploy:cdk && npm run deploy:post"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"aws-cdk": "2.15.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"aws-cdk-lib": "2.245.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16",
"@octokit/rest": "^21.1.0"
}
}