-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
71 lines (71 loc) · 1.67 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
{
"name": "markdown-loader",
"version": "0.0.0-semantically-released",
"description": "markdown-loader for webpack",
"main": "./src/main.cjs",
"type": "module",
"files": [
"src"
],
"scripts": {
"test": "run-p test:*",
"test:suite": "ava",
"test:lint": "eslint --max-warnings 0 --cache --ext js,jsx,cjs,mjs,ts,tsx --ignore-path .gitignore .",
"prepare": "husky install",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/markdown-loader"
},
"keywords": [
"webpack",
"plugin",
"markdown",
"html"
],
"author": "peerigon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerigon/markdown-loader/issues"
},
"homepage": "https://github.com/peerigon/markdown-loader",
"engines": {
"node": ">=12.22.9"
},
"dependencies": {
"marked": "^4.0.12"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"ava": "^4.0.1",
"eslint": "^8.7.0",
"eslint-config-peerigon": "^33.2.4",
"eslint-plugin-node": "^11.1.0",
"highlight.js": "^11.4.0",
"html-loader": "^3.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"npm-run-all": "^4.1.5",
"pin-github-action": "^1.5.0",
"prettier": "^2.5.1",
"webpack": "^5.67.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --cache --fix"
],
"*.{css,md}": [
"prettier --write"
],
".github/workflows/*.{yml,yaml}": [
"pin-github-action --allow-empty",
"prettier --write"
]
}
}