-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 994 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 994 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "comicbook-cli",
"version": "3.0.1",
"description": "A CLI tool to display the latest comic releases",
"engines": {
"node": "18.0.0"
},
"bin": {
"comics": "./index.mjs"
},
"main": "index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .mjs",
"format": "prettier --write '**/*.mjs'"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "1.0.0-rc.9",
"cli-table": "0.3.6",
"commander": "7.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miguelc1221/comicbook-cli.git"
},
"keywords": [
"Marvel",
"Dc comics",
"Comics",
"comicbook"
],
"bugs": {
"url": "https://github.com/miguelc1221/comicbook-cli/issues"
},
"author": "Miguel Correa",
"license": "MIT",
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0"
}
}