-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 3.42 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
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "freight-trust-edi",
"displayName": "Freight Trust EDI",
"publisher": "freight-trust",
"description": "EDI X12/EDIFACT Tools",
"author": {
"name": "Freight Trust",
"url": "https://freighttrust.com"
},
"bugs": {
"url": "https://github.com/sambacha/vscode-edi-ts/issues"
},
"homepage": "https://github.com/sambacha/vscode-edi-ts#readme",
"keywords": [
"blockchain",
"ethereum",
"smart-contracts",
"edifact",
"edi",
"asc x12"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/sambacha/vscode-edi-ts"
},
"version": "0.1.0",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other"
],
"main": "./src/Extension",
"contributes": {
"commands": [
{
"title": "X12: Edit Document",
"command": "ediq.x12.editDocument"
},
{
"title": "X12: Query Document",
"command": "ediq.x12.queryDocument"
}
],
"configuration": {
"title": "Freight Trust EDI Channel Configuration",
"type": "object",
"properties": {
"toolkit.core": {
"type": "object",
"default": {
"ssoActiveTokenUri": "https://freight-trust.auth0.com/oauth/ro",
"ssoClientId": "8HiZztL5FMfYljkbs2KbuWeoDW4H1clp"
},
"description": "Core Module Configuration",
"properties": {
"ssoActiveTokenUri": {
"type": "string",
"description": "The base URI used to actively obtain access tokens."
},
"ssoClientId": {
"type": "string",
"description": "The client_id to use when communicating with the SSO endpoint."
}
}
},
"toolkit.x12": {
"type": "object",
"default": {
"eppServiceUri": "http://epp.freighttrust.io",
"formatX12OnOpen": true
},
"description": "X12 Module Configuration",
"properties": {
"eppServiceUri": {
"type": "string",
"description": "The base URI used to call the EPP service."
},
"formatX12OnOpen": {
"type": "boolean",
"description": "Determines if X12 documents should be auto-formatted when they are opened."
}
}
}
}
},
"keybindings": [
{
"command": "ediq.x12.queryDocument",
"key": "CTRL+SHIFT+T Q",
"when": "editorTextFocus"
}
],
"languages": [
{
"id": "x12",
"aliases": [
"X12"
],
"extensions": [
".txt",
".edi"
],
"firstLine": "\\s*ISA.+"
}
]
},
"activationEvents": [
"*"
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.50.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"gulp": "^4.0.0",
"gulp-shell": "^0.8.0",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^8.0.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.3",
"vscode-test": "^1.4.0"
},
"dependencies": {
"node-x12": "^1.6.2",
"request": "^2.88.2"
}
}