generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "aws-codepipeline-action",
"version": "1.1.8",
"private": true,
"description": "This GitHub Actions will help you trigger a pipeline in your AWS CodePipeline - assumming you already have the pipeline. This will not create the pipeline for you.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run lint && npm run package",
"version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tim-s-ccs/aws-codepipeline-action"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "tim-s-ccs",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@aws-sdk/client-codepipeline": "^3.682.0"
},
"devDependencies": {
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-prettier": "^5.2.1",
"js-yaml": "^4.1.0",
"prettier": "3.3.3",
"typescript": "^5.6.3"
}
}