-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.9 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
{
"name": "mdast-util-wiki-link",
"version": "0.1.2",
"description": "Parse and render wiki-style links",
"keywords": [
"remark",
"remark-plugin",
"markdown",
"gfm",
"micromark",
"micromark-plugin",
"mdast",
"mdast-util"
],
"author": {
"name": "Mark Hudnall",
"email": "[email protected]",
"url": "https://markhudnall.com"
},
"repository": "https://github.com/landakram/mdast-util-wiki-link",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack",
"lint": "eslint src/",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "npm run lint && NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.6.2",
"mdast-util-from-markdown": "^2.0.0",
"micromark": "^2.10.1",
"micromark-extension-wiki-link": "^0.0.4",
"mocha": "^8.2.0",
"rollup": "^2.32.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"unist-util-visit": "^2.0.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"mdast-util-to-markdown": "^0.6.5"
}
}