-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "markdown-toc-auto",
"main": "./lib/main",
"version": "0.14.1",
"description": "Insert and auto-update table of contents on save",
"repository": "https://github.com/t9md/atom-markdown-toc-auto",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configSchema": {
"min": {
"type": "integer",
"minimum": 1,
"default": 1,
"description": "Minimum header level on create toc",
"order": 0
},
"max": {
"type": "integer",
"minimum": 1,
"default": 3,
"description": "Maximum header level on create toc",
"order": 1
},
"update": {
"type": "boolean",
"default": true,
"description": "Update option on create",
"order": 2
},
"link": {
"type": "boolean",
"default": true,
"description": "Link option on create",
"order": 3
},
"asterisk": {
"type": "boolean",
"default": false,
"description": "By dfault, generated toc use `-` as unordered list char. If you prefer `*`, enable this option.",
"order": 4
}
},
"dependencies": {
"dedent": "^0.7.0",
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"fs-plus": "^2.9.1",
"prettier": "^1.11.1",
"standard": "^11.0.1",
"temp": "^0.8.3"
},
"scripts": {
"test": "apm test",
"watch": "fswatch -0 spec lib | xargs -0 -n1 -I{} apm test",
"lint": "standard lib/*.js spec/*.js"
},
"standard": {
"globals": [
"atom",
"jasmine"
],
"ignore": [
"spec/fixtures/*"
]
}
}