This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
{
"name": "github-all-checks-passed",
"version": "1.0.0",
"private": true,
"description": "An AWS APIG and lambda that sets a status when all other chekcs in GitHub are complete",
"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": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comtravo/all-checks-passed-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^4.0.0",
"@octokit/core": "^3.3.1",
"@octokit/rest": "^18.3.5",
"@octokit/webhooks": "^8.5.3",
"aws-sdk": "^2.873.0",
"crypto": "^1.0.1",
"pino": "^6.11.2",
"ssm-parameter-store": "^2.1.2"
},
"devDependencies": {
"@octokit/types": "^6.12.2",
"@types/aws-lambda": "^8.10.72",
"@types/jest": "^26.0.21",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.35",
"@types/pino": "^6.3.6",
"@types/sinon": "^9.0.11",
"@typescript-eslint/parser": "^4.18.0",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.17.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.3.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"prettier": "2.2.1",
"sinon": "^10.0.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}