-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "jira-webhook-action",
"version": "1.0.0",
"description": "Jira Webhook Action",
"main": "dist/index.js",
"scripts": {
"dev": "act -e act/pull-request.json -j local",
"start": "ncc run ./src/index.ts",
"lint": "eslint --max-warnings=0",
"build": "ncc build ./src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/4u/jira-webhook-action.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"starter"
],
"author": "Max Nikitin <max@rururu.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/4u/jira-webhook-action/issues"
},
"homepage": "https://github.com/4u/jira-webhook-action#readme",
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.6.2",
"semantic-release": "^21.0.7",
"semantic-release-gitmoji": "^1.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"node-fetch": "^3.3.2"
}
}