-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 1.73 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
{
"name": "ide-yaml",
"version": "0.8.0",
"description": "Atom-IDE support for YAML language",
"main": "src/main.js",
"scripts": {
"lint": "eslint src/",
"ci": "npm run lint"
},
"repository": "https://github.com/liuderchi/ide-yaml.git",
"keywords": [
"atom-ide",
"yaml",
"yaml-parsing",
"ide",
"language-server-protocol",
"outline-view"
],
"author": {
"name": "Te-Chi Liu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/liuderchi/ide-yaml/issues"
},
"homepage": "https://github.com/liuderchi/ide-yaml#readme",
"devDependencies": {
"eslint": "^7.27.0"
},
"dependencies": {
"atom-languageclient": "^1.10.0",
"yaml-language-server": "^0.19.2"
},
"engines": {
"atom": ">=1.21.0"
},
"enhancedScopes": [
"source.yaml"
],
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
},
"activationHooks": [
"language-yaml:grammar-used"
],
"atomRequirements": [
"atom-ide-ui"
],
"atomCommands": {
"ide-yaml:help": "Provides help information and descriptions of commands."
}
}