forked from brendonboshell/abandoned
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 998 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
{
"name": "ditched",
"description": "List dependencies that haven't been updated in a long time.",
"version": "2.3.0",
"engines": {
"node": ">=12",
"npm": ">=8"
},
"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": "^4.1.2",
"cli-table": "^0.3.1",
"yargs": "^17.3.0"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/node": "^12.20.37",
"@types/yargs": "^17.0.7",
"prettier": "^3.0.2",
"typescript": "^5.2.2"
}
}