-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.19 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@deskproapps/jira",
"version": "0.1.0-beta.7",
"description": "Enables agents to link Deskpro tickets and Jira issues. Allows creating, searching and listing Jira issues from within Deskpro.",
"main": "lib/main/javascript/index.js",
"scripts": {
"dev": "dpat server .",
"lint": "eslint src/main/javascript/* --ext .js,.jsx --cache --cache-location=.cache/eslint",
"lint:fix": "npm run lint -- --fix",
"package": "dpat clean . && dpat compile . && dpat bundle-installer . && dpat verify ./dist && dpat package .",
"test": "dpat test .",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeskproApps/jira.git"
},
"keywords": [
"deskpro",
"deskpro app",
"deskpro jira",
"jira"
],
"author": {
"name": "DeskPRO Ltd.",
"email": "apps@deskpro.com",
"url": "https://deskpro.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/DeskproApps/jira/issues"
},
"homepage": "https://github.com/DeskproApps/jira#readme",
"deskpro": {
"version": "2.3.0",
"title": "Jira BETA",
"isSingle": true,
"scope": "agent",
"storage": [
{
"name": "oauth:jira",
"isBackendOnly": true,
"permRead": "EVERYBODY",
"permWrite": "OWNER"
},
{
"name": "oauth:jira:tokens",
"isBackendOnly": true,
"permRead": "OWNER",
"permWrite": "OWNER"
}
],
"targets": [
{
"target": "ticket-sidebar",
"url": "html/index.html"
}
],
"settings": [
{
"name": "rsaPrivateKey",
"defaultValue": "",
"title": "Your private key",
"required": true,
"type": "textarea"
},
{
"name": "rsaPublicKey",
"defaultValue": "",
"title": "Your public key",
"required": true,
"type": "textarea"
},
{
"name": "jiraInstanceUrl",
"defaultValue": "",
"title": "The Jira instance you want to connect to",
"required": true,
"type": "text"
},
{
"name": "jiraClientId",
"defaultValue": "",
"title": "The consumer key",
"required": true,
"type": "text"
}
],
"customFields": [
{
"type": "dataList",
"attachedTo": "ticket",
"alias": "jiraCards",
"title": "Jira linked issues"
}
],
"deskproApiTags": [
"tickets.*"
],
"externalApis": [
"/^https?://([^.]+\\.)*atlassian.net/?.*$/"
]
},
"devDependencies": {
"@deskpro/apps-dpat": "0.9.6",
"@deskpro/apps-installer": "github:deskpro/apps-installer#v0.4.2",
"@deskpro/apps-sdk-react": "0.2.4",
"@deskpro/react-components": "1.2.4",
"file-loader": "1.1.5",
"jsdom": "11.2.0",
"react-redux": "5.0.6",
"react-test-renderer": "15.6.1",
"redux": "3.7.2",
"redux-form": "7.1.2",
"url-loader": "0.6.2"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"optionalDependencies": {
"changelog-verify": "1.0.4",
"version-changelog": "2.1.0"
}
}