-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 978 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
34
35
36
37
38
39
40
{
"name": "redmine-integration-action",
"version": "1.2.0",
"description": "update redmine issue",
"main": "index.js",
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"build": "ncc build index.js --license licenses.txt",
"test": "jest",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/thaim/redmine-integration-action.git"
},
"keywords": [],
"author": "thaim",
"license": "MIT",
"bugs": {
"url": "https://github.com/thaim/redmine-integration-action/issues"
},
"homepage": "https://github.com/thaim/redmine-integration-action#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"node-redmine": "^0.2.2"
},
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.4.7"
},
"jest": {
"collectCoverage": true
}
}