-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
33 lines (33 loc) · 881 Bytes
/
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
{
"name": "github-commit-to-trello-card",
"version": "2.0.0",
"description": "GitHub Action to attach GitHub commits and pull requests to a Trello card",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalezak/github-commit-to-trello-card.git"
},
"keywords": [
"GitHub",
"Trello",
"Actions"
],
"author": "Dale Zak",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalezak/github-commit-to-trello-card/issues"
},
"homepage": "https://github.com/dalezak/github-commit-to-trello-card#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"axios": "^0.21.4"
},
"devDependencies": {
"@vercel/ncc": "^0.28.3"
}
}