-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
82 lines (82 loc) · 2.24 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@metalsmith/markdown",
"version": "1.10.0",
"description": "A Metalsmith plugin to render markdown files to HTML",
"keywords": [
"markdown",
"metalsmith",
"metalsmith-plugin",
"static-site"
],
"homepage": "https://github.com/metalsmith/markdown#readme",
"bugs": {
"url": "https://github.com/metalsmith/markdown/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/metalsmith/markdown.git"
},
"license": "MIT",
"author": "Ian Storm Taylor (https://ianstormtaylor.com)",
"maintainers": [
"Kevin Van Lierde (https://webketje.com)"
],
"source": "src/index.js",
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"type": "module",
"types": "lib/index.d.ts",
"files": [
"lib/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"changelog": "auto-changelog -u --sort-commits date --starting-version v1.4.0 --commit-limit false --ignore-commit-pattern '((dev|chore|ci):|skip (changelog|travis)|Release)'",
"coverage": "npm test && c8 report --reporter=text-lcov > ./coverage.info",
"format": "prettier --write \"**/*.{yml,md,js,json}\"",
"format:check": "prettier --list-different \"**/*.{yml,md,js,json}\"",
"lint": "eslint --fix .",
"lint:check": "eslint --fix-dry-run .",
"release": "npm run build && release-it .",
"build": "microbundle --target node -f cjs,esm --generateTypes=false",
"test": "c8 mocha"
},
"dependencies": {
"dlv": "^1.1.3",
"dset": "^3.1.2",
"marked": "^4.3.0"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/marked": "^4.3.1",
"assert-dir-equal": "^1.1.0",
"auto-changelog": "^2.4.0",
"c8": "^7.14.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"markdown-it": "^13.0.1",
"metalsmith": "^2.6.0",
"microbundle": "^0.15.1",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"release-it": "^15.10.5"
},
"peerDependencies": {
"metalsmith": "^2.5.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.14.0"
}
}