-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.23 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
52
53
54
55
{
"name": "readme-generator",
"description": "Generate your project's README from package.json data! Uses Lo-Dash/Underscore-style templates.",
"version": "1.0.1",
"homepage": "https://github.com/jonschlinkert/readme-generator",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/readme-generator",
"bugs": {
"url": "https://github.com/jonschlinkert/readme-generator/issues"
},
"license": "MIT",
"files": [
"cli.js",
"index.js",
"templates"
],
"main": "index.js",
"preferGlobal": true,
"bin": {
"readme": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"engine": "^0.1.12",
"expand-pkg": "^0.1.8",
"load-pkg": "^3.0.1",
"log-ok": "^0.1.1",
"minimist": "^1.2.0",
"mixin-deep": "^1.3.1",
"month": "^2.0.1",
"month-day": "^0.1.1",
"parse-author": "^2.0.0",
"pretty-remarkable": "^0.4.1",
"remarkable": "^1.7.1",
"template-helpers": "^0.6.7",
"write": "^1.0.3",
"year": "^0.2.1"
},
"devDependencies": {
"mocha": "^3.5.3"
},
"keywords": [
"generate",
"generator",
"package",
"template",
"templates",
"readme"
]
}