-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.72 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
{
"name": "check4updates",
"version": "1.3.3",
"description": "Check and update package dependencies.",
"keywords": [
"c4u",
"check",
"dependencies",
"dependency",
"find",
"management",
"npm",
"package",
"package.json",
"update",
"upgrade",
"version"
],
"homepage": "https://github.com/spurreiter/check4updates",
"bugs": {
"url": "https://github.com/spurreiter/check4updates/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spurreiter/check4updates.git"
},
"license": "MIT",
"author": "spurreiter",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"bin": {
"c4u": "./bin/c4u.js"
},
"files": [
"bin",
"src",
"types"
],
"scripts": {
"all": "npm-run-all clean pretty lint test types",
"ci": "CI=true npm run all",
"changelog": "npx conventional-changelog -p eslint -i CHANGELOG.md -s -r1 -u",
"clean": "rimraf coverage types",
"coverage": "c8 -r text npm test",
"lint": "eslint",
"pretty": "prettier -w src/*.js -w test/*.js",
"test": "mocha",
"types": "tsc"
},
"dependencies": {
"asyncc-promise": "^1.2.0",
"chalk": "^4.1.2",
"debug": "^4.3.7",
"hosted-git-info": "^8.0.0",
"lodash.get": "^4.4.2",
"pacote": "^20.0.0",
"progress": "^2.0.3",
"semver": "^7.6.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.9.0",
"c8": "^10.1.2",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"typescript": "^5.6.3"
},
"c4uIgnore": {
"chalk": "^4 // version >=5 uses ESM"
}
}