forked from dylang/npm-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·92 lines (92 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "npm-check-updated",
"version": "6.0.3",
"type": "module",
"description": "Check for outdated, incorrect, and unused dependencies.",
"exports": "./lib/index.js",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"lint": "xo ./lib/**/*.js",
"local": "node ./bin/cli.js",
"test": "npm run lint && ava && ./bin/cli.js || echo Exit Status: $?."
},
"bin": {
"npm-check-updated": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/MiniDigger/npm-check.git"
},
"keywords": [
"npm",
"outdated",
"dependencies",
"unused",
"changelog",
"check",
"updates",
"api",
"interactive",
"cli",
"safe",
"updating",
"updater",
"installer",
"devDependencies"
],
"author": {
"name": "Dylan Greene",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MiniDigger/npm-check/issues"
},
"homepage": "https://github.com/MiniDigger/npm-check",
"files": [
"bin",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"dependencies": {
"callsite-record": "^4.1.5",
"chalk": "^5.2.0",
"co": "^4.6.0",
"depcheck": "^1.4.3",
"execa": "^6.1.0",
"giturl": "^1.0.1",
"global-modules": "^2.0.0",
"globby": "^13.1.3",
"got": "^12.5.3",
"inquirer": "^9.1.4",
"is-ci": "^3.0.1",
"lodash": "^4.17.21",
"meow": "^11.0.0",
"minimatch": "^5.1.2",
"node-emoji": "^1.11.0",
"ora": "^6.1.2",
"path-exists": "^5.0.0",
"pkg-dir": "^7.0.0",
"preferred-pm": "^3.0.3",
"rc-config-loader": "^4.1.2",
"registry-auth-token": "^5.0.1",
"registry-url": "^6.0.1",
"semver": "^7.3.8",
"semver-diff": "^4.0.0",
"strip-ansi": "^7.0.1",
"text-table": "^0.2.0",
"throat": "^6.0.2",
"update-notifier": "^6.0.2",
"xtend": "^4.0.2"
},
"devDependencies": {
"ava": "^5.1.0",
"xo": "^0.53.1"
}
}