-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "clubhouse-workflow-action",
"version": "0.1.0",
"description": "Github action to update and transition the workflow state of clubhouse stories",
"main": "index.js",
"scripts": {
"lint": "eslint src/*.js index.js",
"package": "ncc build index.js -o dist --license licenses.txt",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farmersdog/clubhouse-workflow-action.git"
},
"keywords": [
"GitHub",
"Actions",
"Clubhouse",
"Workflow",
"Release",
"Tags"
],
"author": "The Farmer's Dog",
"license": "MIT",
"bugs": {
"url": "https://github.com/farmersdog/clubhouse-workflow-action/issues"
},
"homepage": "https://github.com/farmersdog/clubhouse-workflow-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@useshortcut/client": "^1.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34",
"eslint": "^7.32.0",
"mocha": "^9.1.1",
"sinon": "^11.1.2",
"yargs": "^17.1.1"
}
}