-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.44 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": "org-action",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/ab180/org-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ab180/org-action/issues"
},
"homepage": "https://github.com/ab180/org-action#readme",
"scripts": {
"build": "tsc -b node_modules/checkout && tsc && ncc build src/index.ts -o dist && rm -rf ./lib",
"test": "tsc --noEmit && jest --coverage",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/auth-app": "^4.0.13",
"@slack/types": "^2.8.0",
"@slack/web-api": "^6.8.1",
"checkout": "github:actions/checkout",
"ensure-error": "^4.0.0",
"is-base64": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vercel/ncc": "^0.36.1",
"eslint": "8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"nock": "^13.3.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}