forked from Yleisradio/github-action-trello-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.45 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
{
"name": "yle-gh-action--trello-integration",
"version": "1.0.0",
"description": "Github workflow action to make Trello cards abide what happens in Github",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write src/",
"lint": "eslint --ignore-path .gitignore --ext '.js, .ts, .jsx, .tsx .json .eta' src/",
"lint:fix": "npm run lint -- --fix ",
"build": "npm run tsc && ncc build build-tsc/index.js -o ./dist --license licenses.txt",
"tsc": "tsc",
"pre-release": "npm run lint && npm run format && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yleisradio/yle-gh-action--trello-integration.git"
},
"keywords": [],
"author": "",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/Yleisradio/yle-gh-action--trello-integration/issues"
},
"homepage": "https://github.com/Yleisradio/yle-gh-action--trello-integration#readme",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"@octokit/webhooks-definitions": "^3.67.3",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.4.0",
"typescript": "^4.4.3"
}
}