-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 924 Bytes
/
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
{
"name": "snoopm",
"version": "1.1.20",
"description": "A cli to get the basics of other Node.js code at a glance",
"main": "index.js",
"scripts": {
"test": "npm install snoopm; ./node_modules/mocha/bin/mocha.js --config=tests/.mocha_opts.yaml tests/; npm uninstall snoopm"
},
"engines": {
"node": ">=18.x"
},
"repository": {
"type": "git",
"url": "https://github.com/carvilsi/snoopm"
},
"keywords": [
"node_modules",
"version",
"npm",
"dependencies",
"cli"
],
"bin": "./bin/snoopm.js",
"author": "carvilsi",
"license": "MIT",
"dependencies": {
"axios": "^1.7.3",
"cli-spinner": "^0.2.10",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"commander": "^11.0.0",
"is-url": "^1.2.4",
"logplease": "^1.2.15",
"semver": "^7.5.4"
},
"devDependencies": {
"chai": "^4.3.8",
"execa": "^8.0.1",
"mocha": "^10.2.0"
}
}