-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"author": "mrodrig",
"name": "updep",
"description": "An automated dependency upgrade module for NodeJS.",
"version": "2.2.12",
"repository": {
"type": "git",
"url": "http://github.com/mrodrig/updep.git"
},
"bin": {
"updep": "./bin/updep.js"
},
"scripts": {
"update": "node ./bin/updep package.json -p '' -s 4 -i minor -U minor",
"update:dry-run": "node ./bin/updep package.json -p '' -s 4 -i minor -U minor --dry-run",
"test": "./node_modules/.bin/mocha --reporter spec",
"lint": "./node_modules/.bin/eslint bin test"
},
"keywords": [
"node",
"dependency",
"manager",
"updep",
"upgrade",
"dependencies",
"devDependencies",
"management",
"automatic",
"upgrade dependencies"
],
"dependencies": {
"axios": "^1.13.0",
"commander": "12.1.0",
"semver": "7.6.2"
},
"devDependencies": {
"eslint": "8.57.0",
"mocha": "10.6.0"
},
"engines": {
"node": ">=18"
}
}