forked from thomasjo/atom-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 966 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "latex",
"version": "0.28.2",
"description": "Compile LaTeX documents from within Atom.",
"keywords": [
"tex",
"latex",
"latexmk",
"texlive",
"miktex"
],
"license": "MIT",
"main": "./lib/main",
"repository": "https://github.com/thomasjo/atom-latex",
"dependencies": {
"etch": "^0.1.0",
"fs-plus": "^2.5.0",
"lodash": "^3.7.0",
"temp": "^0.8.1",
"wrench": "^1.5.8"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"standard": "^5.3.1"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"atom",
"latex",
"afterEach",
"beforeEach",
"describe",
"expect",
"it",
"jasmine",
"runs",
"spyOn",
"waitsFor",
"waitsForPromise"
]
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}