-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.16 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
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": "readme-md-cli",
"version": "0.19.1",
"description": "Automatically generate a readme for your project from the CLI.",
"keywords": [
"cli",
"commonmark",
"create",
"creator",
"docs",
"documentation",
"generate",
"generator",
"markdown",
"md",
"readme",
"tty",
"tui"
],
"homepage": "https://github.com/jbenner-radham/node-readme-md-cli#readme",
"bugs": {
"url": "https://github.com/jbenner-radham/node-readme-md-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbenner-radham/node-readme-md-cli.git"
},
"license": "MIT",
"author": "James Benner <james.benner@gmail.com> (https://www.jamesbenner.com/)",
"type": "module",
"exports": "./lib/index.js",
"main": "lib/index.js",
"bin": {
"readme-md": "./bin/cli.js"
},
"directories": {
"lib": "lib",
"doc": "doc",
"example": "example"
},
"files": [
".config/readme-md",
"bin",
"doc",
"example",
"images",
"lib",
"template"
],
"scripts": {
"demo": "agg demo.cast images/demo.gif",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"prepare": "husky",
"readme": "./bin/cli.js --non-interactive > README.md",
"test": "c8 jasmine --config=test/support/jasmine.json"
},
"dependencies": {
"@inquirer/prompts": "^7.1.0",
"camelcase-keys": "^9.1.3",
"chalk": "^5.3.0",
"execa": "^9.5.1",
"is-file-in-cwd": "^0.1.0",
"js-yaml": "^4.1.0",
"lodash.isplainobject": "^4.0.6",
"log-symbols": "^7.0.0",
"meow": "^13.2.0",
"readme-md": "^1.3.1",
"yarn-lockfile-exists": "^1.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@types/jasmine": "^5.1.4",
"@types/node": "^18.19.64",
"c8": "^10.1.2",
"command-exists": "^1.2.9",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jasmine": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"lint-staged": "^15.2.10",
"sort-package-json": "^2.11.0",
"tempy": "^3.1.0"
},
"engines": {
"node": "^18.19.0 || >=20.5.0",
"yarn": "1.x"
},
"preferGlobal": true
}