-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.51 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
{
"name": "bare-github-actions",
"version": "1.0.14",
"description": "",
"main": "src/index.ts",
"scripts": {
"prepare": "husky install",
"start": "npx ts-node --transpile-only src/index.ts",
"build": "tsc",
"package": "tsc && ncc build --source-map --license licenses.txt",
"lint": "eslint ./src --ext .ts --ext .js",
"lint:fix": "eslint ./src --ext .ts --ext .js --fix",
"test:unit": "jest --coverage --passWithNoTests",
"test:watch": "jest --watch",
"release": "semantic-release"
},
"keywords": [],
"author": "Sebastian Cretu",
"license": "ISC",
"devDependencies": {
"@aws-sdk/types": "^3.696.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-s3": "^3.717.0",
"@slack/web-api": "^7.8.0"
}
}