generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
55
56
57
58
59
60
61
{
"name": "jira-ci-cd-integration",
"version": "0.5.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc --noEmit",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "yarn lint --fix ",
"package": "yarn package:docker && yarn package:action",
"package:docker": "ncc build src/docker/main.ts --out dist/docker --source-map --license licenses.txt",
"package:action": "ncc build src/github/main.ts --out dist/github --source-map --license licenses.txt",
"increment": "npm --no-git-tag-version version",
"test": "jest"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rohit-gohri/jira-ci-cd-integration.git"
},
"keywords": [
"actions",
"node",
"integration",
"jira"
],
"author": "Rohit Gohri <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^6.10.0",
"env-ci": "^7.1.0",
"isomorphic-fetch": "^3.0.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@types/env-ci": "^3.1.1",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "2.3.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]"
}