This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.06 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
{
"name" : "@hedgedoc/markdown-it-image-size",
"type" : "module",
"version" : "2.0.2",
"description" : "A markdown-it plugin add image sizes ported to typescript",
"source" : "src/index.ts",
"main" : "dist/index.js",
"types" : "dist/index.d.ts",
"module" : "./dist/index.esm.js",
"unpkg" : "./dist/index.umd.js",
"exports" : {
"require" : "./dist/index.cjs",
"types" : "./dist/index.d.ts",
"default" : "./dist/index.mjs"
},
"files" : [
"LICENSES/*",
"package.json",
"README.md",
"dist/index.cjs",
"dist/index.cjs.map",
"dist/index.d.ts",
"dist/index.esm.js",
"dist/index.esm.js.map",
"dist/index.mjs",
"dist/index.mjs.map",
"dist/index.umd.js",
"dist/index.umd.js.map",
"dist/parse-image-size.d.ts",
"dist/specialCharacters.d.ts"
],
"scripts" : {
"test" : "jest",
"build" : "microbundle",
"prepublish" : "rm -rf dist && yarn lint && yarn build && yarn test",
"lint" : "eslint --ext .ts src",
"lint:fix" : "eslint --fix --ext .ts src"
},
"keywords" : [
"markdown",
"markdown-it",
"image size"
],
"author" : "The HedgeDoc developers",
"license" : "AGPL-3.0",
"peerDependencies" : {
"markdown-it" : ">=12"
},
"devDependencies" : {
"@jest/types" : "29.2.1",
"@types/markdown-it" : "12.2.3",
"@typescript-eslint/eslint-plugin" : "5.40.1",
"@typescript-eslint/parser" : "5.40.1",
"eslint" : "8.26.0",
"eslint-config-prettier" : "8.5.0",
"eslint-plugin-jest" : "27.1.3",
"eslint-plugin-prettier" : "4.2.1",
"jest" : "29.2.1",
"markdown-it" : "13.0.1",
"microbundle" : "0.15.1",
"prettier" : "2.7.1",
"ts-jest" : "29.0.3",
"typescript" : "4.8.4"
},
"directories" : {
"test" : "test"
},
"repository" : {
"type" : "git",
"url" : "git+https://github.com/hedgedoc/markdown-it-image-size.git"
},
"bugs" : {
"url" : "https://github.com/hedgedoc/markdown-it-image-size/issues"
},
"homepage" : "https://github.com/hedgedoc/markdown-it-image-size#readme",
"packageManager" : "[email protected]"
}