-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 941 Bytes
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
{
"name": "markdown-it-highlight",
"version": "0.2.0",
"description": "highlight.js plugin for markdown-it",
"main": "dist/index.js",
"scripts": {
"build": "webpack --progress --color",
"build:watch": "yarn build --watch",
"release": "yarn build -p",
"test": "node -r babel-register test/index.js",
"upgrade": "yarn-upgrade-all"
},
"repository": "git@github.com:tylingsoft/markdown-it-highlight.git",
"author": "Tyler Long <tyler4long@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"markdown-it": "^8.4.0",
"standard": "^10.0.3",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-node-externals": "^1.6.0",
"yarn-upgrade-all": "^0.2.0"
},
"dependencies": {
"highlight.js": "^9.12.0"
}
}