-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1 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
{
"name": "autocomplete-bibtex",
"main": "./lib/main",
"version": "1.2.10",
"description": "Uses Autocomplete+ to fill-in keys from bibtex, citeproc JSON, and citeproc YAML files.",
"author": "apcshields",
"license": "MIT",
"keywords": [
"markdown",
"commonmark",
"pandoc",
"tex",
"bibtex",
"citeproc",
"yaml"
],
"engines": {
"atom": ">=1.22.0"
},
"dependencies": {
"atom-select-list": "^0.3.2",
"fuse.js": "^3.2.0",
"latex-to-unicode-converter": "0.5.2",
"untildify": "^3.0.2",
"yaml-js": "^0.1.3"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-google": "^0.6.0",
"eslint-plugin-jasmine": "^2.9.1"
},
"repository": {
"type": "git",
"url": "https://github.com/apcshields/autocomplete-bibtex"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
},
"bibliographicReferences": {
"versions": {
"1.0.0": "provide"
}
}
}
}