forked from chrdoud/pmkr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.71 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
{
"name": "pmkr",
"displayName": "PMKR",
"description": "ProcessMaker External Editor",
"version": "0.0.1",
"publisher": "ChrisDoudet",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:pmkr.sync",
"workspaceContains:**/.PMKRProcess"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "pmkr.sync",
"title": "Sync",
"category": "PMKR"
}
],
"configuration":{
"type": "object",
"title": "PMKR_Settings",
"properties": {
"pmkr_workspace":{
"type": "string",
"default": "workflow",
"description": "ProcessMaker workspace, default is workflow"
},
"pmkr_client_id":{
"type": "string",
"default": null,
"description": "ProcessMaker Client id. See : http://wiki.processmaker.com/3.1/OAuth_2.0#Registering_an_external_application_to_use_REST"
},
"pmkr_client_secret":{
"type": "string",
"default": null,
"description": "ProcessMaker Client secret. See : http://wiki.processmaker.com/3.1/OAuth_2.0#Registering_an_external_application_to_use_REST"
},
"pmkr_username":{
"type": "string",
"default": null,
"description": "The username of a ProcessMaker user, which is case insensitive. See : http://wiki.processmaker.com/3.1/OAuth_2.0#Authorization_and_login_to_obtain_an_access_token"
},
"pmkr_userpassword":{
"type": "string",
"default": null,
"description": "ProcessMaker user password. See : http://wiki.processmaker.com/3.1/OAuth_2.0#Authorization_and_login_to_obtain_an_access_token"
},
"pmkr_base_url":{
"type": "string",
"default": null,
"description": "ProcessMaker url, like https://bpm.mycompagny.com' See : http://wiki.processmaker.com/3.0/Calling_REST_Endpoints"
},
"pmkr_auth_url":{
"type": "string",
"default": "/oauth2/token",
"description": "ProcessMaker Authentification url, default is /oauth2/token. See : http://wiki.processmaker.com/3.1/OAuth_2.0#Authorization_and_login_to_obtain_an_access_token"
},
"pmkr_api_ver":{
"type": "string",
"default": "/api/1.0",
"description": "ProcessMaker Api version, default is /api/1.0. See : http://wiki.processmaker.com/3.1/REST_API_Administration"
},
"pmkr_loc_workspace_path":{
"type":"string" ,
"default": null,
"description": "Path to Local Folder, like /home/yourname/Documents/PMworkspace. From PM worspace PHP Trigger and Dynaform Script will be written here."
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42",
"@types/superagent": "^3.8.1",
"superagent": "^3.8.2",
"fs-extra": "^5.0.0",
"mkdirp": "^0.5.1"
}
}