-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 730 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 730 Bytes
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
{
"name": "repos2md",
"version": "3.0.1",
"description": "Export repos list to a markdown file.",
"main": "index.js",
"repository": "https://github.com/frenchbread/repos2md.git",
"author": "Damir Mustafin <frenchthebread@gmail.com>",
"license": "MIT",
"exports": "./lib/index.js",
"type": "module",
"scripts": {
"test": "ava",
"lint": "./node_modules/.bin/eslint ./"
},
"bin": {
"repos2md": "cli.js"
},
"dependencies": {
"axios": "^0.21.4",
"chalk": "^5.3.0",
"expand-home-dir": "^0.0.3",
"fs-extra": "^9.1.0",
"meow": "^9.0.0",
"ora": "^5.4.1"
},
"engines": {
"node": ">=14.16"
},
"devDependencies": {
"ava": "^5.3.1",
"eslint": "^8.47.0"
}
}