-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 720 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 720 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
32
33
{
"name": "github-actions-runner",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/nikovirtala/cdk-github-actions-runner.git"
},
"license": "MIT",
"author": {
"name": "Niko Virtala",
"email": "niko.virtala@hey.com",
"organization": false
},
"bin": {
"github-actions-runner": "bin/github-actions-runner.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"cdk": "cdk"
},
"devDependencies": {
"@types/node": "17.0.43",
"aws-cdk": "^2.28.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"aws-cdk-lib": "^2.28.0",
"constructs": "^10.1.41",
"source-map-support": "^0.5.21"
}
}