-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 989 Bytes
/
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
{
"name": "markdown-embedder",
"version": "1.0.0",
"description": "",
"main": "src/markdown-embedder.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack --config webpack.config.js --mode development",
"watch": "webpack --config webpack.config.js --mode development --watch --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramutdotnet/markdown-embedder.git"
},
"author": "Nakorn Sinpadung",
"license": "ISC",
"bugs": {
"url": "https://github.com/ramutdotnet/markdown-embedder/issues"
},
"homepage": "https://github.com/ramutdotnet/markdown-embedder#readme",
"dependencies": {
"axios": "^0.18.0",
"showdown": "^1.8.6"
},
"devDependencies": {
"css-loader": "^0.28.10",
"style-loader": "^0.20.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.9"
}
}