-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.45 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
{
"scripts": {
"build": "grunt build"
},
"name": "automenu",
"description": "Automatically generate a table of contents for the headings (h1, h2, h3, h4, h5, h6 tags) by hierarchy using JavaScript. Tables of contents are often created by hand. However, as the size of the table of contents increases, it becomes difficult to keep the table of contents consistent when changing the display name, position, or ID of the headings. This script reduces the burden of document creation by automatically generating a table of contents by calling a method in JavaScript. The main feature of this script is that the table of contents can be divided into different groups. This makes it possible to describe multiple topics on a single page.",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AonaSuzutsuki/AutoContentsMenuJS.git"
},
"author": "AonaSuzutsuki",
"license": "MIT",
"bugs": {
"url": "https://github.com/AonaSuzutsuki/AutoContentsMenuJS/issues"
},
"homepage": "https://github.com/AonaSuzutsuki/AutoContentsMenuJS#readme",
"devDependencies": {
"grunt": "^1.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-filerev": "^2.3.1",
"grunt-usemin": "^3.1.1"
},
"dependencies": {}
}