forked from zeke/package-json-to-readme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "package-json-to-readme",
"version": "0.0.0-development",
"description": "Generate a README.md from package.json contents",
"install_from_git": "only",
"main": "index.js",
"scripts": {
"test": "mocha && standard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": "https://github.com/cionz0/package-json-to-readme",
"keywords": [
"package.json",
"readme",
"generator",
"markdown",
"documentation"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com/), cionzo <[email protected]> (https://www.cionzo.com)",
"license": "MIT",
"dependencies": {
"github-url-to-object": "^1.6.0",
"hogan.js": "^2.0.0",
"strip-ansi": "^0.2.2",
"yargs": "^3.0.4"
},
"bin": {
"package-json-to-readme": "index.js",
"readme": "index.js"
},
"preferGlobal": true,
"devDependencies": {
"mocha": "^2.1.0",
"nixt": "^0.3.0",
"standard": "^8.6.0",
"semantic-release": "^8.2.0"
},
"standard": {
"env": {
"mocha": true
},
"ignore": [
"test/fixtures"
]
}
}