-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "markdown-handler",
"version": "0.3.8",
"description": "Markdown Handler - Mini utility to help you load your markdown files on the fly",
"author": "Sporule.com",
"keywords": [
"markdown",
"markdown-handler",
"parser",
"markdown blog",
"markdown reader",
"markdown loader"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sporule/markdown-handler"
},
"scripts": {
"build": "npx webpack --config webpack.config.js",
"test": "jest"
},
"files": [
"/dist"
],
"main": "./dist/index.js",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.6",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"script-ext-html-webpack-plugin": "^2.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {}
}