-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (32 loc) · 1.17 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
{
"version": "0.0.1",
"author": "Jordon Bedwell",
"license": "LicenseRef-license.txt",
"description": "Add `data-md-type` to your codeblocks for `md<->html`",
"bugs": { "url": "https://github.com/forestryio/markdown-it-codeblock-type/issues" },
"repository": { "type": "git", "url": "git+https://github.com/forestryio/markdown-it-codeblock-type.git" },
"homepage": "https://github.com/forestryio/markdown-it-codeblock-type#readme",
"main": "lib/markdown-it/codeblock-type.js",
"name": "markdown-it-codeblock-type",
"scripts": {
"prepublish": "rm -rf lib/ && npm run build",
"start": "echo \"Error: no script/start specified\" && exit 1",
"test": "mocha --compilers js:babel-core/register --reporter spec spec/tests/**/*.js",
"build": "script/build"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-es2015": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"imports-loader": "^0.6.5",
"webpack": "^1.13.2",
"mocha": "^3.1.2"
},
"dependencies": {
"markdown-it": "^8.0.1"
}
}