forked from star-integrations/backlog-pr-link-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "backlog-pr-link-action",
"version": "0.2.2",
"description": "GitHub Actions: Link PR to backlog issue.",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"test": "jest",
"lint": "eslint src/*.ts",
"lint-fix": "eslint --fix src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toshimaru/backlog-pr-link-action.git"
},
"keywords": [],
"author": "toshimaru",
"license": "MIT",
"bugs": {
"url": "https://github.com/toshimaru/backlog-pr-link-action/issues"
},
"homepage": "https://github.com/toshimaru/backlog-pr-link-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "4.0.0",
"backlog-js": "^0.10.0",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"isomorphic-form-data": "^2.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"ts-jest": "^26.4.0"
}
}