-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 904 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
36
37
{
"name": "pandoc-highlighter",
"version": "0.0.6",
"description": "Pandoc source code highlighting with CodeMirror",
"license": "MIT",
"repository": "mvhenderson/pandoc-highlighter",
"bugs": "https://github.com/mvhenderson/pandoc-highlighter/issues",
"author": "Mike Henderson",
"main": "index.js",
"bin": {
"pandoc-highlighter": "bin/pandoc-highlighter.js",
"codemirror-highlighter": "bin/codemirror-highlighter.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec test/test.js"
},
"keywords": [
"pandoc",
"highlight",
"pandocfilter"
],
"engines": {
"node": ">=0.8.0"
},
"dependencies": {
"codemirror": "~4.1.0",
"lodash": "~2.4.1",
"pandoc-filter": "~0.1.0",
"resolve": "~0.7.0",
"findup-sync": "~0.1.3"
},
"devDependencies": {
"mocha": "~1.19.0",
"should": "~3.3.1",
"mkdirp": "~0.5.0"
}
}