forked from brendonboshell/abandoned
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1021 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
42
43
44
45
46
47
48
49
{
"name": "ditched",
"description": "List dependencies that haven't been updated in a long time.",
"version": "3.0.0",
"type": "module",
"engines": {
"node": ">=18",
"npm": ">=10"
},
"keywords": [
"cli",
"check",
"dependencies",
"abandoned",
"outdated"
],
"bugs": {
"url": "https://github.com/draperunner/ditched/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/draperunner/ditched.git"
},
"bin": {
"ditched": "./dist/ditched.js"
},
"files": [
"dist"
],
"scripts": {
"start": "npm run build && node dist/ditched.js",
"format": "prettier . --write",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table": "^0.3.11",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cli-table": "^0.3.4",
"@types/node": "^12.20.55",
"@types/yargs": "^17.0.33",
"prettier": "^3.5.1",
"typescript": "^5.7.3"
}
}