-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.12 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
{
"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.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"read-pkg": "^9.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"mocha": "^10.7.3"
},
"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"
}