-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
60 lines (60 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
{
"name": "@metalsmith/excerpts",
"version": "1.5.1",
"description": "A Metalsmith plugin to extract an excerpt from HTML files.",
"keywords": [
"excerpt",
"metalsmith-plugin",
"metalsmith"
],
"homepage": "https://github.com/metalsmith/excerpts#readme",
"bugs": "https://github.com/metalsmith/excerpts/issues",
"repository": {
"type": "git",
"url": "https://github.com/metalsmith/excerpts.git"
},
"license": "MIT",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib",
"CHANGELOG.md"
],
"scripts": {
"changelog": "auto-changelog -u --starting-date 2021-12-01 --commit-limit false --ignore-commit-pattern '^((dev|chore|ci):|Release|skip changelog)'",
"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 .",
"release": "release-it .",
"test": "nyc mocha"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"debug": "^4.3.3"
},
"devDependencies": {
"@metalsmith/markdown": "^1.3.0",
"auto-changelog": "^2.3.0",
"coveralls": "^3.1.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"metalsmith": "^2.3.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"release-it": "^14.11.8"
},
"peerDependencies": {
"metalsmith": "^2.3.0"
},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
}
}