generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
52 lines (52 loc) · 1.27 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
44
45
46
47
48
49
50
51
52
{
"name": "aws-copilot-github-action",
"version": "0.0.8",
"private": true,
"description": "AWS Copilot Github Action",
"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",
"test": "jest",
"all": "npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksivamuthu/aws-copilot-github-actions.git"
},
"keywords": [
"actions",
"node",
"aws",
"copilot",
"github",
"action",
"github-action",
"github-actions",
"github-actions-copilot",
"github-actions-copilot-aws",
"setup"
],
"author": "ksivamuthu",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/tool-cache": "^1.7.2"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.33.4",
"eslint": "^8.13.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^27.6.3",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
}
}