UNPKG

666 BJSONView Raw
1{
2 "name": "litterate",
3 "version": "0.1.0",
4 "description": "Generate beautiful literate programming-style description of your code from comment annotations",
5 "main": "src/index.js",
6 "repository": "git@github.com:thesephist/litterate.git",
7 "author": "Linus Lee <linus@thesephist.com>",
8 "license": "MIT",
9 "scripts": {
10 "docs": "./src/index.js --config ./litterate.config.js",
11 "test": "mocha test/"
12 },
13 "bin": {
14 "litterate": "./src/index.js"
15 },
16 "dependencies": {
17 "glob": "^7.1.3",
18 "marked": "^0.6.0",
19 "minimist": "^1.2.0",
20 "mkdirp": "^0.5.1"
21 },
22 "devDependencies": {
23 "chai": "^4.2.0",
24 "mocha": "^5.2.0"
25 }
26}