-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.44 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
49
50
51
52
53
54
{
"name": "action-create-issue",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to create an issue",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"lint": "run-p lint:*",
"lint:typecheck": "tsc",
"lint:eslint": "eslint src/**/*.ts",
"lint:prettier": "prettier src/**/*.ts --check",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-ecosystem/action-create-issue.git"
},
"keywords": [
"actions",
"github",
"assign"
],
"author": "The Actions Ecosystem Authors",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.9",
"semver": "^7.3.2"
},
"devDependencies": {
"@octokit/webhooks": "^7.15.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/semver": "^7.3.4",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.14.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
}
}