-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
executable file
·104 lines (104 loc) · 2.26 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "npm-check",
"version": "6.0.1",
"description": "Check for outdated, incorrect, and unused dependencies.",
"main": "lib",
"engines": {
"node": ">=22.11.0"
},
"types": "./index.d.ts",
"typings": "./index.d.ts",
"scripts": {
"lint": "xo ./lib/*.js",
"test": "npm run lint && ./bin/cli.js || echo Exit Status: $?.",
"transpile": "babel lib --out-dir lib-es5",
"watch": "babel lib --out-dir lib-es5 --watch",
"prepublish": "npm run transpile"
},
"xo": {
"space": 4,
"rules": {
"no-warning-comments": [
0
],
"global-require": [
0
]
}
},
"bin": {
"npm-check": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dylang/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/dylang/npm-check/issues"
},
"homepage": "https://github.com/dylang/npm-check",
"files": [
"bin",
"lib",
"lib-es5"
],
"dependencies": {
"callsite-record": "^4.1.5",
"chalk": "^5.3.0",
"co": "^4.6.0",
"depcheck": "^1.4.7",
"execa": "^9.5.1",
"giturl": "^2.0.0",
"global-modules": "^2.0.0",
"globby": "^14.0.2",
"inquirer": "^12.0.1",
"is-ci": "^3.0.1",
"lodash": "^4.17.21",
"meow": "^13.2.0",
"minimatch": "^10.0.1",
"node-emoji": "^2.1.3",
"ora": "^8.1.1",
"package-json": "^10.0.1",
"path-exists": "^5.0.0",
"pkg-dir": "^8.0.0",
"preferred-pm": "^4.0.0",
"rc-config-loader": "^4.1.3",
"semver": "^7.6.3",
"semver-diff": "^4.0.0",
"strip-ansi": "^7.1.0",
"text-table": "^0.2.0",
"throat": "^6.0.2",
"update-notifier": "^7.3.1",
"xtend": "^4.0.2"
},
"devDependencies": {
"babel-runtime": "^6.26.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"xo": "^0.37.1"
}
}