-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.12 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "pkg2md",
"description": "This modules creates a Markdown presentation from a package.json on CLI or API.",
"version": "0.9.0",
"homepage": "https://github.com/deadratfink/pkg2md",
"license": "SEE LICENSE IN [LICENSE.md](https://github.com/deadratfink/pkg2md/blob/master/LICENSE.md)",
"author": {
"name": "Jens Krefeldt",
"email": "j.krefeldt@gmail.com",
"url": "https://github.com/deadratfink"
},
"contributors": [],
"maintainers": [],
"repository": {
"type": "git",
"url": "https://github.com/deadratfink/pkg2md.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": "https://github.com/deadratfink/pkg2md/issues",
"private": false,
"config": {
"test": {
"mocha": {
"reporter": "spec"
},
"istanbul": {
"report": "lcovonly"
}
}
},
"scripts": {
"docs": "cat docs/LOGO.md > README.md && cat docs/BADGES.md >> README.md && cat docs/TOC.md >> README.md && ./pkg2md -b -c -o -k -s -r -m -i && cat docs/USAGE.md >> README.md && doctoc README.md --github --title '# TOC' --maxlevel 2",
"wiki": "jsdoc2md -P lib/*.js index.js > docs/API.md && doctoc docs/API.md --github --title '### TOC' --maxlevel 2 && cat docs/API.md > '../pkg2md.wiki/API-v1.md'&& cat docs/CONTRIBUTING.md > ../pkg2md.wiki/Contributing.md && cat docs/CHANGELOG.md > ../pkg2md.wiki/Changelog.md && doctoc ../pkg2md.wiki/Changelog.md --github --title '### TOC' --maxlevel 3",
"test": "istanbul cover _mocha --report $npm_package_config_test_istanbul_report -- -R $npm_package_config_test_mocha_reporter ./test/test-*.js",
"test:html": "istanbul cover _mocha --report html -- -R $npm_package_config_test_mocha_reporter ./test/test-*.js"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"ajv": "^4.0.5",
"bluebird": "^3.3.3",
"cli": "^0.11.1",
"cwd": "^0.10.0",
"flat": "^2.0.0",
"github-url-to-object": "^2.2.1",
"is-stream": "^1.0.1",
"json-stringify-safe": "^5.0.1",
"mkdirp-then": "^1.2.0",
"package.json-schema": "^0.2.0",
"url-join": "^1.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.3.1",
"codecov": "^1.0.1",
"coveralls": "^2.11.9",
"doctoc": "^1.0.0",
"fs-extra": "^0.30.0",
"istanbul": "^0.4.2",
"jsdoc-parse": "^1.2.7",
"jsdoc-to-markdown": "^1.3.3",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.2.0",
"object-path": "^0.9.2",
"package-json-to-readme": "^1.5.0",
"winston": "^2.2.0"
},
"preferGlobal": true,
"bin": {
"pkg2md": "./pkg2md"
},
"main": "./index.js",
"keywords": [
"readme",
"readme.md",
"package",
"package.json",
"pkg",
"pkg-to-md",
"pkgtomd",
"pkg2md",
"markdown",
"md",
"api",
"cli",
"transform",
"convert",
"promise"
]
}