generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
35 lines (35 loc) · 891 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
{
"name": "gitflow-action",
"version": "0.0.5",
"private": true,
"description": "A GitHub Action that automatically creates and merges pull requests from master to dev and from release to master.",
"keywords": [
"actions",
"gitflow"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Logerfo/gitflow-action.git"
},
"author": {
"email": "[email protected]",
"name": "Bruno Logerfo",
"url": "https://github.com/Logerfo"
},
"homepage": "https://github.com/gitflow-action",
"bugs": "https://github.com/gitflow-action/issues",
"license": "MIT",
"main": "src/main.js",
"scripts": {
"build": "ncc build src/main.js",
"lint": "eslint src/main.js"
},
"dependencies": {
"@actions/core": "1.2.7",
"@actions/github": "3.0.0"
},
"devDependencies": {
"eslint": "7.9.0",
"@zeit/ncc": "0.22.3"
}
}