forked from pleonex/atom-autocomplete-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 681 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 681 Bytes
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
{
"name": "autocomplete-xml",
"main": "./lib/main",
"version": "0.9.4",
"description": "Autocomplete+ provider for XML via XSD",
"keywords": [
"xml",
"xsd",
"autocomplete"
],
"activationCommands": {},
"repository": "https://github.com/pleonex/atom-autocomplete-xml",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"uuid": "^2.0.1",
"xml2js": "^0.4.15"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}