-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 738 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 738 Bytes
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
{
"name": "document-outline",
"main": "./lib/document-outline",
"version": "2.1.2",
"description": "Show a hierarchical outline of a text document",
"keywords": [
"outline",
"markdown",
"latex",
"commonmark",
"knitr",
"academic",
"text",
"asciidoc",
"atom-ide"
],
"repository": "https://github.com/mangecoeur/document-outline",
"license": "GPL-3.0",
"engines": {
"atom": ">=1.22.0 <2.0.0"
},
"providedServices": {
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
},
"dependencies": {
"commonmark": "^0.28.0",
"etch": "^0.12.7"
},
"devDependencies": {
"eslint": "^3.7.0",
"eslint-config-google": "^0.6.0"
}
}