-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.24 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
{
"name": "node-peruse",
"version": "1.4.2",
"description": "A powerful CLI tool designed to analyze your node.js application.",
"main": "src/index.js",
"scripts": {
"start": "node bin/peruse.js",
"test": "node --test",
"format": "prettier --write .",
"check-format": "prettier --check .",
"ci": "npm run check-format"
},
"bin": {
"node-peruse": "./bin/peruse.js"
},
"keywords": [
"node",
"analyzer",
"cli",
"tool",
"peruse",
"node-peruse"
],
"files": [
"src",
"LICENSE",
"README.md",
"package.json"
],
"homepage": "https://github.com/shivam-sharma7/node-peruse#README",
"repository": {
"type": "git",
"url": "git+https://github.com/shivam-sharma7/node-peruse.git"
},
"bugs": {
"url": "https://github.com/shivam-sharma7/node-peruse/issues"
},
"type": "module",
"author": "Shivam Sharma <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"figlet": "^1.8.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"ora": "^8.1.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"semver": "^7.6.3"
},
"devDependencies": {
"prettier": "^3.3.3"
},
"engines": {
"node": "12.0.0 || >= 18.0.0"
}
}