forked from hesstobi/atom-autocomplete-latex-cite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 771 Bytes
/
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
{
"name": "autocomplete-latex-cite",
"main": "./lib/main",
"version": "0.3.2",
"description": "Autocomplete+ Support for Bibtex References in Latex",
"activationHooks": [
"language-latex:grammar-used",
"language-latex2e:grammar-used"
],
"keywords": [],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"repository": "https://github.com/hesstobi/atom-autocomplete-latex-cite",
"license": "MIT",
"dependencies": {
"citation-js": "^0.3.4",
"fuse.js": "^3.2.0",
"glob": "^7.1.2",
"latex-to-unicode-converter": "^0.5.0",
"promisify-node": "^0.5.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"devDependencies": {
"fs-extra": "^6.0.0"
}
}