-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.49 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.49 KB
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
{
"name": "check-stats-modules",
"version": "2.3.0",
"description": "check-stats-modules(csm) is is a CLI application that obtains the specified npm module's stats. After specifying the module name and period, the number of downloads during that period is acquired and displayed on the terminal.",
"license": "MIT",
"main": "./lib/check-stats-modules",
"type": "module",
"bin": {
"check-stats-modules": "./bin/csm.js",
"csm": "./bin/csm.js"
},
"dependencies": {
"chalk": "^5.3.0",
"date-fns": "^4.0.0",
"date-fns-tz": "^3.1.3",
"json-table": "^0.1.3",
"npm-stats-api": "^2.0.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"jest": "^30.0.0"
},
"scripts": {
"lint": "pnpm biome lint --apply ./lib/*.js",
"lint:fix": "pnpm biome format --write ./lib/*.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"engines": {
"node": ">=18.0"
},
"keywords": [
"cli",
"check-stats-modules",
"stats",
"check"
],
"author": {
"name": "kkeeth",
"email": "zensin0082@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kkeeth/check-stats-modules"
},
"homepage": "https://github.com/kkeeth/check-stats-modules#readme",
"volta": {
"node": "24.12.0"
},
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531"
}