forked from invakid404/jira-ticket-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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": "jira-ticket-validator",
"version": "0.0.0",
"private": true,
"description": "Verify that given fields are valid on a Jira ticket",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"codegen": "graphql-codegen --config codegen.yml",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run codegen && npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/invakid404/jira-ticket-validator.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "invakid404 <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"@octokit/graphql": "^4.8.0",
"graphql": "^15.6.0",
"jira-client": "^6.22.0",
"json-to-graphql-query": "^2.1.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@graphql-codegen/typescript-document-nodes": "2.1.4",
"@graphql-codegen/typescript-resolvers": "2.2.1",
"@octokit/graphql-schema": "^10.72.0",
"@types/jira-client": "^6.21.3",
"@types/lodash.get": "^4.4.6",
"@types/node": "^16.10.1",
"@typescript-eslint/parser": "^4.31.2",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}