-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
{
"name": "docs-parser",
"version": "1.0.0",
"type": "module",
"description": "parse /docs folders and create manifest.json",
"homepage": "https://github.com/zentered/docs-manifest-generator#readme",
"bugs": {
"url": "https://github.com/zentered/docs-manifest-generator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/docs-manifest-generator.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/patrickheneise)"
],
"main": "index.mjs",
"scripts": {
"start": "node index.mjs",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,json,md,yml}": [
"prettier --write"
],
"*.{mjs,js}": [
"eslint --cache --fix"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^17.2.0",
"commitlint": "^17.2.0",
"eslint": "^8.27.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3"
},
"engines": {
"node": "^12||^16"
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"dree": "^3.4.2",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"remove-markdown": "^0.5.0"
}
}