-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 973 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
38
39
40
{
"name": "distill-js",
"version": "0.1.2",
"description": "Extracts comments from js files and puts them into md files",
"main": "./index",
"scripts": {
"test": "rm testRead-distilled.md;make test;cat testRead-distilled.md"
},
"repository": {
"type": "git",
"url": "https://github.com/DavideDaniel/distill-js"
},
"keywords": [
"comments",
"extract",
"markdown",
"md",
"js",
"javascript"
],
"bin": {
"distill": "./cli.js"
},
"author": "David Daniel <[email protected]> (http://davidedaniel.github.io), Alvin liang <[email protected]>",
"license": [
{
"type": "MIT",
"url": "https://github.com/DavideDaniel/distill-js/blob/master/LICENSE.md"
}
],
"bugs": {
"url": "https://github.com/DavideDaniel/distill-js/issues"
},
"homepage": "https://github.com/DavideDaniel/distill-js",
"dependencies": {
"chai": "^2.3.0",
"fs": "0.0.2",
"mocha": "^2.2.4"
}
}