-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 850 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
{
"name": "illiterate",
"version": "1.1.0",
"dependencies": {
"lodash": "~3.4.0",
"markdown-it": "^8.3.1"
},
"description": "Extract code block from markdown à la coffeescript - but for any language",
"main": "lib/illiterate.js",
"bin": {
"illiterate": "bin/illiterate"
},
"scripts": {
"build": "grep '^ ' src/illiterate.js.md | cut -c5- > lib/illiterate.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/billymoon/illiterate"
},
"keywords": [
"illiterate",
"literate",
"javascript",
"markdown"
],
"author": "Billy Moon <[email protected]> (http://billy.itaccess.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/billymoon/illiterate/issues"
},
"homepage": "https://github.com/billymoon/illiterate"
}