-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.11 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
80
81
82
83
84
85
{
"name": "remark-obsidian",
"version": "1.8.0",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"files": [
"dist/cjs/index.cjs",
"dist/esm/index.mjs"
],
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
}
},
"scripts": {
"test": "jest",
"deploy": "CI=true npx semantic-release",
"prepublishOnly": "npm run build",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"jest": {
"transformIgnorePatterns": []
},
"author": "johackim",
"description": "Remark plugin to support Obsidian markdown syntax",
"repository": {
"type": "git",
"url": "[email protected]:johackim/remark-obsidian.git"
},
"keywords": [
"remark",
"obsidian"
],
"publishConfig": {
"access": "public"
},
"license": "GPL-3.0",
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^26.9.0",
"jest": "^28.1.3",
"mdast-util-gfm-footnote": "^1.0.2",
"mdast-util-gfm-strikethrough": "^1.0.3",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-to-string": "^3.2.0",
"remark": "^14.0.3",
"remark-comment": "^1.0.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-html": "^15.0.2",
"remark-parse": "^10.0.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"slugify": "^1.6.6",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2",
"yaml": "^2.3.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version}"
}
]
]
}
}