-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 969 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
35
36
37
{
"license": "MIT",
"version": "1.0.0",
"name": "codebuild-dispatcher",
"main": "codebuild-dispatcher",
"keywords": ["ci", "codebuild"],
"author": "Tom Lei <[email protected]>",
"homepage": "https://github.com/beanworks/codebuild-dispatcher",
"description": "CI runner that supports partial build based on file changes from last commit",
"bin": {
"codebuild-dispatch": "dist/index.js"
},
"scripts": {
"test": "jest",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/beanworks/codebuild-dispatcher.git"
},
"dependencies": {
"chalk": "^4.1.0",
"js-yaml": "^3.14.0",
"prettier": "^2.0.5",
"aws-sdk": "^2.700.0",
"commander": "^5.1.0"
},
"devDependencies": {
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"@types/jest": "^26.0.0",
"@types/aws-sdk": "^2.7.0",
"@types/js-yaml": "^3.12.4"
}
}