-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 754 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 754 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
{
"name": "diff-lockfiles",
"version": "1.1.0",
"description": "a diff for package-lock.json files",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oalders/diff-lockfiles.git"
},
"type": "module",
"bin": {
"diff-lockfiles": "bin/diff-lockfiles.js"
},
"main": "lib/index.js",
"author": "Olaf Alders <olaf@wundersolutions.com> (https://olafalders.com/)",
"license": "MIT",
"scripts": {
"start": "./bin/diff-lockfiles.js",
"lint": "eslint .",
"test": "jest"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^14.0.0",
"markdown-table": "^3.0.4",
"semver": "^7.5.4",
"table": "^6.8.1"
},
"devDependencies": {
"eslint": "^9.0.0",
"jest": "^30.0.0"
}
}