-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.51 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"type": "module",
"name": "eleventy-plugin-unified",
"version": "0.0.0-development",
"description": "Use the unified ecosystem in Eleventy with remark and rehype.",
"main": ".eleventy.cjs",
"scripts": {
"test": "npm run lint && npm run ava",
"ava": "c8 --100 ava",
"lint": "eslint src/**/*.cjs src/**/*.js .eleventy.cjs && prettier --check src/**/*.cjs src/**/*.js .eleventy.cjs",
"semantic-release": "semantic-release",
"commit": "commit"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"remark",
"rehype",
"unified"
],
"repository": {
"type": "git",
"url": "https://github.com/NickColley/eleventy-plugin-unified.git"
},
"homepage": "https://github.com/NickColley/eleventy-plugin-unified#readme",
"license": "MIT",
"engines": {
"node": ">= 16"
},
"files": [
"src",
".eleventy.cjs"
],
"dependencies": {
"rehype-parse": "^8.0.4",
"rehype-retext": "^3.0.2",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"retext-english": "^4.1.0",
"unified": "^10.1.2",
"vfile-reporter": "^7.0.4"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt-cli": "^17.1.2",
"ava": "^5.0.1",
"c8": "^7.12.0",
"deepmerge": "^4.2.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"proxyquire": "^2.1.3",
"rehype-format": "^4.0.1",
"remark-slug": "^7.0.1",
"retext-repeated-words": "^4.2.0",
"semantic-release": "^19.0.5",
"to-mock": "^1.6.2",
"unist-util-visit": "^4.1.1"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"env": {
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:n/recommended",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 2022
},
"ignorePatterns": [
"!.eleventy.cjs"
]
}
}