generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "action-slacksync",
"version": "1.5.0",
"private": true,
"description": "Sync job status with Slack",
"main": "dist/index.js",
"engines": {
"node": "^18.12.0"
},
"prettier": "@masterworks/eslint-config-masterworks/prettier",
"scripts": {
"typecheck": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "tsup-node src/main.ts",
"test": "jest",
"all": "npm run typecheck && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasterworksIO/action-slacksync.git"
},
"keywords": [
"actions",
"node",
"slack",
"notification",
"sync"
],
"author": "Masterworks",
"license": "MIT",
"dependencies": {
"@actions/artifact": "2.2.1",
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@octokit/types": "11.1.0",
"@slack/web-api": "6.8.1",
"loglevel": "1.8.1",
"node-fetch": "3.3.1"
},
"devDependencies": {
"@masterworks/eslint-config-masterworks": "github:MasterworksIO/eslint-config-masterworks#2.1.1",
"@types/jest": "29.5.3",
"@types/node": "18.16.19",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.45.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-node": "11.1.0",
"jest": "29.6.1",
"jest-circus": "29.6.1",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"tsup": "7.1.0",
"typescript": "5.1.6"
}
}