-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "trello-link-github-action",
"version": "1.1.0",
"description": "GitHub action to link commits, pull requests, and issues to Trello cards",
"main": "src/index.js",
"scripts": {
"lint": "eslint ./src --ext .js -c .eslintrc",
"format": "eslint ./src --ext .js -c .eslintrc --fix",
"clean": "rm -rf dist",
"cleanModules": "rm -rf node_modules",
"compile": "ncc build src/index.js -m --license licenses.txt",
"prepare": "npm run lint",
"version": "npm run format && npm run clean && npm run compile && git add .",
"postversion": "git push && git push --tags"
},
"keywords": [
"github",
"action",
"trello"
],
"author": "kagof",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kagof/trello-link-github-action"
},
"bugs": {
"url": "https://github.com/kagof/trello-link-github-action/issues"
},
"homepage": "https://github.com/kagof/trello-link-github-action",
"readme": "README.md",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"axios": "^0.22.0"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0"
}
}