-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 974 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
41
42
43
44
45
46
47
48
49
{
"name": "gen-doc-cli",
"version": "0.1.1",
"description": "Generate documentation from tag based comments",
"license": "MIT",
"author": {
"name": "Andrew Musgrave",
"email": "[email protected]",
"url": "https://github.com/AndrewMusgrave"
},
"repository": "AndrewMusgrave/gen-doc-cli",
"scripts": {
"format": "prettier --trailing-comma es5 --single-quote --write \"utils/**/*.js\" cli.js docParse.js",
"test": "jest"
},
"bin": {
"gendoc": "./cli.js"
},
"engines": {
"node": ">=6"
},
"files": [
"cli.js",
"utils"
],
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"dependencies": {
"readdir-sync-recursive": "^1.0.0",
"fs-mkdirp-sync": "^1.0.0"
},
"devDependencies": {
"jest": "^23.4.2",
"prettier": "1.14.0"
},
"keywords": [
"doc",
"docs",
"documentation",
"gen",
"generate",
"js",
"ts",
"cli",
"package"
]
}