-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 932 Bytes
/
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
{
"name": "markdown-image-loader",
"version": "3.0.1",
"description": "Handles image references involved in markdown files during the webpack processing.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec test/*test.js",
"lint": "eslint 'index.js'"
},
"keywords": [
"webpack",
"loader",
"markdown",
"image references",
"web-slideshow",
"remark",
"reveal"
],
"devDependencies": {
"eslint": "^9.5.0",
"mocha": "^10.4.0"
},
"dependencies": {
"loader-utils": "^2.0.0"
},
"peerDependencies": {
"webpack": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"author": "Luc Sorel-Giffo",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/lucsorel/markdown-image-loader.git"
},
"bugs": {
"url": "https://github.com/lucsorel/markdown-image-loader/issues"
},
"engines": {
"node": ">=6.11"
}
}