-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.83 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
70
71
72
{
"name": "@metalsmith/table-of-contents",
"version": "1.0.0",
"description": "A metalsmith plugin to generate table of contents.",
"keywords": [
"table-of-contents",
"toc-generator",
"metalsmith-plugin",
"metalsmith"
],
"repository": {
"type": "git",
"url": "https://github.com:metalsmith/table-of-contents.git"
},
"homepage": "https://github.com/metalsmith/table-of-contents",
"bugs": {
"url": "https://github.com/metalsmith/table-of-contents/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov > ./coverage.info",
"coveralls": "npm run coverage && cat ./coverage.info | coveralls",
"format": "prettier --write \"**/*.{yml,md,js,json}\"",
"lint": "eslint --cache --fix-dry-run .",
"release": "release-it ."
},
"author": "Mitsunori KUBOTA <[email protected]> (http://anatoo.jp)",
"maintainers": [
"Kevin Van Lierde <[email protected]> (https://webketje.com)"
],
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"cheerio": "^1.0.0-rc.10",
"debug": "^4.1.1",
"entities": "^1.1.1",
"extend": "^3.0.2",
"lodash": ">=4.17.13",
"metalsmith": "^2.3.0",
"slugify": "^1.6.4"
},
"devDependencies": {
"@metalsmith/layouts": "^2.4.0",
"assert-dir-equal": "^1.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"jstransformer-handlebars": "^1.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"release-it": "^14.11.8"
},
"peerDependencies": {
"metalsmith": "^2.3.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/index.js",
"lib/TocItem.js"
],
"directories": {
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=8.17.0"
}
}