-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"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": "^3.0.0",
"date-fns-tz": "^3.1.3",
"json-table": "^0.1.3",
"npm-stats-api": "^2.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"jest": "^29.7.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": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kkeeth/check-stats-modules"
},
"homepage": "https://github.com/kkeeth/check-stats-modules#readme",
"volta": {
"node": "20.15.1"
}
}