-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
72
73
74
75
76
77
78
79
{
"name": "markdown-it-image-figures",
"version": "2.1.1",
"description": "Render images occurring by itself in a paragraph as a figure with support for figcaptions.",
"license": "MIT",
"repository": "git+https://github.com/Antonio-Laguna/markdown-it-image-figures.git",
"author": {
"name": "Antonio Laguna",
"email": "[email protected]",
"url": "https://antonio.laguna.es"
},
"engines": {
"node": ">=12.0.0"
},
"source": "src/index.js",
"type": "module",
"exports": {
"import": "./dist/markdown-it-images-figures.mjs",
"require": "./dist/markdown-it-images-figures.cjs",
"default": "./dist/markdown-it-images-figures.module.js"
},
"main": "./dist/markdown-it-images-figures.cjs",
"module": "./dist/markdown-it-images-figures.module.js",
"unpkg": "./dist/markdown-it-images-figures.umd.js",
"scripts": {
"build": "microbundle --target node --compress --sourcemap false",
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
"dev": "microbundle watch",
"pretest": "npm run build",
"test": "mocha ./test/index.test.js && npm run test:exports",
"test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
"lint": "eslint src/*.js lazy-example.js",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test"
},
"files": [
"src/index.js",
"LICENSE",
"README.md",
"dist"
],
"homepage": "https://github.com/Antonio-Laguna/markdown-it-image-figures",
"keywords": [
"markdown-it",
"markdown-it-plugin",
"img",
"figure",
"lazy",
"image"
],
"eslintConfig": {
"extends": [
"firstandthird",
"plugin:mocha/recommended"
],
"plugins": [
"mocha"
],
"env": {
"browser": false,
"mocha": true,
"node": true,
"es6": true
}
},
"peerDependencies": {
"markdown-it": "*"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-firstandthird": "^6.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"markdown-it": "*",
"markdown-it-attrs": "*",
"microbundle": "^0.15.1",
"mocha": "^10.2.0"
}
}