-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "frontmatter-markdown-loader",
"version": "3.7.0",
"description": "Webpack loader for Front Matter Markdown file to get front matter attributes, compiled markdown and React/Vue component which renders compiled markdown",
"main": "index.js",
"files": [
"index.js",
"mode.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest --clearCache && jest --forceExit --detectOpenHandles",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hmsk/frontmatter-markdown-loader.git"
},
"keywords": [
"webpack",
"markdown",
"frontmatter",
"vue",
"loader",
"react"
],
"author": "Kengo Hamasaki <k.hamasaki@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmsk/frontmatter-markdown-loader/issues"
},
"homepage": "https://github.com/hmsk/frontmatter-markdown-loader#readme",
"dependencies": {
"front-matter": "^4.0.0",
"markdown-it": "^12.0.0"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@vue/babel-preset-app": "4.5.17",
"@vue/component-compiler-utils": "3.3.0",
"@vue/test-utils": "1.3.0",
"@vue/vue2-jest": "27.0.0-alpha.4",
"jest": "27.5.1",
"node-eval": "2.0.0",
"react": "18.0.0",
"react-test-renderer": "18.0.0",
"vue": "2.6.14",
"vue-template-compiler": "2.6.14"
},
"jest": {
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"vue",
"json"
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "@vue/vue2-jest"
}
}
}