libnpmdiff 4.0.1 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -3
- package/lib/should-print-patch.js +1 -1
- package/package.json +17 -19
package/README.md
CHANGED
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://npm.im/libnpmdiff)
|
|
4
4
|
[](https://npm.im/libnpmdiff)
|
|
5
|
-
[](https://coveralls.io/github/npm/libnpmdiff?branch=main)
|
|
7
|
-
|
|
5
|
+
[](https://github.com/npm/cli/actions/workflows/ci-libnpmdiff.yml)
|
|
8
6
|
The registry diff lib.
|
|
9
7
|
|
|
10
8
|
## Table of Contents
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libnpmdiff",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "The registry diff",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/npm/cli",
|
|
7
|
+
"url": "https://github.com/npm/cli.git",
|
|
8
8
|
"directory": "workspaces/libnpmdiff"
|
|
9
9
|
},
|
|
10
10
|
"main": "lib/index.js",
|
|
11
11
|
"files": [
|
|
12
|
-
"bin",
|
|
13
|
-
"lib"
|
|
12
|
+
"bin/",
|
|
13
|
+
"lib/"
|
|
14
14
|
],
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": "^12.13.0 || ^14.15.0 || >=16"
|
|
16
|
+
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
19
|
"npm",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"license": "ISC",
|
|
34
34
|
"scripts": {
|
|
35
35
|
"eslint": "eslint",
|
|
36
|
-
"lint": "eslint
|
|
36
|
+
"lint": "eslint \"**/*.js\"",
|
|
37
37
|
"lintfix": "npm run lint -- --fix",
|
|
38
38
|
"test": "tap",
|
|
39
39
|
"posttest": "npm run lint",
|
|
@@ -41,28 +41,26 @@
|
|
|
41
41
|
"preversion": "npm test",
|
|
42
42
|
"postversion": "npm publish",
|
|
43
43
|
"prepublishOnly": "git push origin --follow-tags",
|
|
44
|
-
"postlint": "
|
|
45
|
-
"template-
|
|
46
|
-
},
|
|
47
|
-
"tap": {
|
|
48
|
-
"check-coverage": true
|
|
44
|
+
"postlint": "template-oss-check",
|
|
45
|
+
"template-oss-apply": "template-oss-apply --force"
|
|
49
46
|
},
|
|
50
47
|
"devDependencies": {
|
|
51
|
-
"@npmcli/
|
|
52
|
-
"
|
|
53
|
-
"tap": "^
|
|
48
|
+
"@npmcli/eslint-config": "^3.0.1",
|
|
49
|
+
"@npmcli/template-oss": "3.5.0",
|
|
50
|
+
"tap": "^16.0.1"
|
|
54
51
|
},
|
|
55
52
|
"dependencies": {
|
|
56
|
-
"@npmcli/disparity-colors": "^
|
|
53
|
+
"@npmcli/disparity-colors": "^2.0.0",
|
|
57
54
|
"@npmcli/installed-package-contents": "^1.0.7",
|
|
58
55
|
"binary-extensions": "^2.2.0",
|
|
59
56
|
"diff": "^5.0.0",
|
|
60
|
-
"minimatch": "^
|
|
61
|
-
"npm-package-arg": "^9.0.
|
|
62
|
-
"pacote": "^13.
|
|
57
|
+
"minimatch": "^5.0.1",
|
|
58
|
+
"npm-package-arg": "^9.0.1",
|
|
59
|
+
"pacote": "^13.6.1",
|
|
63
60
|
"tar": "^6.1.0"
|
|
64
61
|
},
|
|
65
62
|
"templateOSS": {
|
|
66
|
-
"
|
|
63
|
+
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
|
64
|
+
"version": "3.5.0"
|
|
67
65
|
}
|
|
68
66
|
}
|