-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 814 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 814 Bytes
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
{
"name": "@nurjs/check-dependencies",
"description": "helps to check dependencies of node projects",
"version": "0.0.2",
"license": "APACHE-2.0",
"bin": {
"check-dependencies": "index.js"
},
"author": {
"name": "nurjs",
"email": "hi@jlosch.de",
"url": "https://github.com/nurjs/check-dependencies"
},
"keywords": [
"check-dependencies",
"nurjs"
],
"files": [
"index.js",
"utils"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\""
},
"dependencies": {
"chalk": "^5.1.2",
"cli-alerts": "^1.2.2",
"cli-handle-error": "^4.4.0",
"cli-handle-unhandled": "^1.1.1",
"cli-meow-help": "^3.1.0",
"cli-welcome": "^2.2.2",
"meow": "^11.0.0",
"npm-check-updates": "^16.4.1",
"npm-registry-fetch": "^14.0.2"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}