-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "@quilicicf/markdown-formatter",
"version": "5.0.0",
"description": "A markdown formatter intended for writing specifications",
"main": "index.js",
"types": "types/index.d.ts",
"type": "module",
"bin": {
"markdown-format": "bin/markdown-formatter.js"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "npm run lint && npm run test-only",
"test-only": "node --experimental-vm-modules node_modules/.bin/jest",
"format:readme": "node bin/markdown-formatter.js -f README.md -r -u configurationExample.json",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quilicicf/markdown-formatter.git"
},
"keywords": [
"formatter",
"markdown",
"toc"
],
"author": "quilicicf <[email protected]> (https://github.com/quilicicf)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/quilicicf/markdown-formatter/issues"
},
"homepage": "https://github.com/quilicicf/markdown-formatter",
"dependencies": {
"@snyk/protect": "^1.1294.0",
"is-valid-path": "0.1.1",
"mdast-util-toc": "7.1.0",
"remark": "15.0.1",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-stringify": "11.0.0",
"unified": "11.0.5",
"unist-builder": "4.0.0",
"vfile": "6.0.3",
"yargs": "17.7.2"
},
"devDependencies": {
"@babel/eslint-parser": "7.23.3",
"@jest/globals": "29.7.0",
"@talend/eslint-config": "4.0.2",
"eslint": "8.54.0",
"eslint-config-airbnb": "19.0.4",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jasmine": "4.1.3",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"jest": "29.7.0"
},
"snyk": true
}