-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.15 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
{
"name": "hyperclick-latex",
"main": "./lib/main",
"version": "0.5.8",
"description": "Hyperclick support for LaTeX",
"keywords": [
"latex",
"hyperclick"
],
"bugs": {
"url": "https://github.com/Aerijo/hyperclick-latex/issues"
},
"author": "Aerijo",
"repository": "https://github.com/Aerijo/hyperclick-latex",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"activationHooks": [
"language-latex:grammar-used",
"language-latex2e:grammar-used"
],
"providedServices": {
"hyperclick": {
"versions": {
"0.1.0": "getHyperclickProvider"
}
}
},
"consumedServices": {
"busy-signal": {
"versions": {
"1.0.0": "consumeSignal"
}
}
},
"dependencies": {
"lodash": "^4.17.4",
"atom-package-deps": "^4.6.0"
},
"package-deps": [
"hyperclick",
"busy-signal"
],
"configSchema": {
"setRootFile": {
"description": "When making a new file, set the root path automatically",
"enum": [
"Calling file",
"Project root",
"None"
],
"default": "Project root",
"type": "string"
}
}
}