This repository was archived by the owner on Mar 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 KB
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
{
"name": "codepipeline-github-action",
"version": "1.0.0",
"description": "Push GitHub branches in a CodePipeline.",
"scripts": {
"build": "webpack",
"clean": "rimraf ./dist",
"lint": "tslint --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"upload": "npm run clean && npm run build && aws s3 cp ./dist/dist.zip s3://lightrail-public-resources/cloudformation/codepipeline-github-action/`date +%Y-%m-%d`.zip --acl public-read"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Giftbit/codepipeline-github-action.git"
},
"keywords": [],
"author": "Jeffery Grajkowski <pushplay@gmail.com>",
"contributors": [
{
"name": "Jeffery Grajkowski",
"email": "pushplay@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Giftbit/codepipeline-github-action/issues"
},
"homepage": "https://github.com/Giftbit/codepipeline-github-action#readme",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@types/aws-lambda": "8.10.46",
"@types/node": "^10.12.18",
"babel-loader": "^8.0.6",
"file-loader": "^6.0.0",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.0",
"tslint": "^5.12.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"aws-sdk": "^2.814.0"
}
}