-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
52
53
54
55
56
57
{
"name": "package-age",
"version": "0.4.1",
"description": "A CLI for detecting old dependencies used in your project",
"type": "module",
"exports": "./index.js",
"bin": {
"package-age": "./cli.js"
},
"files": [
"lib/",
"cli.js",
"index.js"
],
"scripts": {
"lint": "eslint **/*.js",
"mocha": "c8 mocha",
"test": "npm run lint && npm run mocha",
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info"
},
"dependencies": {
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"read-pkg": "^10.1.0",
"semver": "^7.7.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"c8": "^11.0.0",
"chai": "^6.2.2",
"eslint": "^10.0.3",
"globals": "^17.4.0",
"mocha": "^11.7.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ENT8R/package-age.git"
},
"keywords": [
"package",
"npm",
"age",
"old",
"unsupported",
"dependencies",
"dependency",
"cli"
],
"author": "ENT8R",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ENT8R/package-age/issues"
},
"homepage": "https://github.com/ENT8R/package-age"
}