This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "@articulate/aws-eventbridge-action",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to push events to AWS EventBridge",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint '**/*.ts'",
"fix": "eslint --fix '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --coverage --verbose",
"test:watch": "jest --verbose --watch",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions"
],
"author": "Articulate Global, LLC",
"license": "MIT",
"engines": {
"node": "20"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-eventbridge": "^3.462.0"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.5",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}