-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
38 lines (38 loc) · 988 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
{
"name": "eleventy-plugin-toc",
"version": "1.1.5",
"description": "Eleventy filter to generate a Table of Contents in a template",
"main": ".eleventy.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdsteinbach/eleventy-plugin-toc.git"
},
"keywords": [
"11ty",
"eleventy",
"plugin",
"toc",
"table of contents"
],
"author": "James Steinbach",
"license": "ISC",
"bugs": {
"url": "https://github.com/jdsteinbach/eleventy-plugin-toc/issues"
},
"homepage": "https://github.com/jdsteinbach/eleventy-plugin-toc#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.10"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1"
}
}