This repository has been archived by the owner on Jul 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 2.92 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
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
126
127
128
{
"name": "che-js-plugin",
"version": "3.0.0",
"publisher": "redhat",
"engines": {
"che": "6.0.0"
},
"description": "First Che JS Plugin",
"main": "dist/bundle.js",
"loader": "AMD",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "node_modules/.bin/webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evidolob/che-js-plugin.git"
},
"author": "Yevhen Vydolob",
"license": "EPL-1.0",
"displayName": "Che JS API Plugin",
"categories": [
"Languages",
"Snippets",
"Linters",
"Themes",
"Debuggers",
"Formatters",
"Keymaps",
"Other"
],
"keywords": [
"JS API"
],
"pluginDependencies": [
"che.js.api"
],
"contributes": {
"actions": [
{
"action": {
"id": "cjp.test.action",
"text": "Show Part",
"description": "Show Part",
"icon": "cjp.image1",
"addToGroup": [
{
"groupId": "helpGroup",
"relativeTo": "someAction",
"anchor": "last"
}
],
"keybinding": {
"win": "control alt G",
"linux": "control alt G",
"mac": "cmd alt G"
}
}
},
{
"group": {
"id": "cjp.test.group",
"text": "JS Group",
"description": "JS Test Group",
"icon": "cjp.image2",
"popup": true,
"addToGroup": {
"groupId": "helpGroup",
"relativeTo": "someAction",
"anchor": "last"
},
"actions": [
{
"action": {
"id": "cjp.action.in.group",
"text": "Hide Part",
"description": "Action defined in group",
"icon": "cjp.imageFactory"
}
},
"separator",
{
"group": {
"id": "cjp.group.in.group"
}
},
{
"reference": "cjp.test.action"
}
]
}
}
],
"images": [
{
"id": "cjp.image1",
"url": "https://png.icons8.com/download-from-cloud/ios7/32"
},
{
"id": "cjp.image2",
"html": "<i class=\"fa fa-bath\" aria-hidden=\"true\"></i>"
}
],
"themes": [
{
"id": "js.theme",
"description": "Theme Form JS Plugin",
"path": "theme/theme.json"
}
]
},
"dependencies": {
"dom-loader": "^1.0.4"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"file-loader": "^1.1.6",
"html-loader": "^0.5.1",
"raw-loader": "^0.5.1",
"style-loader": "^0.19.1",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.4",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
}
}