-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "@adobe/remark-gridtables",
"version": "3.0.8",
"description": "Remark Gridtables",
"keywords": [
"remark",
"markdown",
"table",
"gridtables",
"unify"
],
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/remark-gridtables"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/remark-gridtables/issues"
},
"homepage": "https://github.com/adobe/remark-gridtables#readme",
"mocha": {
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"dependencies": {
"@adobe/mdast-util-gridtables": "4.0.8",
"@adobe/micromark-extension-gridtables": "2.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@stylistic/eslint-plugin-js": "2.11.0",
"c8": "10.1.2",
"eslint": "9.16.0",
"husky": "9.1.7",
"junit-report-builder": "5.1.1",
"lint-staged": "15.2.10",
"mdast-builder": "1.1.1",
"mocha": "11.0.1",
"mocha-multi-reporters": "1.5.1",
"rehype-format": "5.0.1",
"rehype-stringify": "10.0.1",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"remark-stringify": "11.0.0",
"semantic-release": "24.2.0",
"unified": "11.0.5",
"unist-util-visit": "5.0.0"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
}
}