-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "codedown",
"description": "Extract and run code blocks from Markdown files",
"version": "3.2.1",
"homepage": "https://github.com/earldouglas/codedown",
"author": {
"name": "James Earl Douglas",
"email": "[email protected]",
"url": "http://earldouglas.com"
},
"repository": {
"type": "git",
"url": "git://github.com/earldouglas/codedown.git"
},
"bugs": {
"url": "https://github.com/earldouglas/codedown/issues"
},
"license": "MIT",
"bin": {
"codedown": "./codedown.js"
},
"main": "lib/codedown.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"arg": "5.0.2",
"marked": "4.3.0",
"minimatch": "3.1.2",
"readline": "1.3.0"
},
"keywords": [
"markdown",
"literate programming"
],
"devDependencies": {
"coveralls": "3.1.1",
"istanbul": "0.4.5",
"jshint": "2.13.6",
"mocha": "9.2.2",
"mocha-lcov-reporter": "1.3.0"
},
"jshintConfig": {
"laxcomma": true
},
"scripts": {
"test": "jshint . --exclude node_modules && mocha",
"coverage": "istanbul cover -no-default-excludes -x '**/node_modules/**' _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
}
}