@pnpm/plugin-trusted-deps 0.2.1 → 0.2.2
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/allow.json +1 -0
- package/package.json +16 -9
package/allow.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/plugin-trusted-deps",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A list of OSS packages that are known to require lifecycle scripts to function properly",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -8,20 +8,22 @@
|
|
|
8
8
|
"allow.json",
|
|
9
9
|
"pnpmfile.cjs"
|
|
10
10
|
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"lint": "eslint .",
|
|
13
|
-
"test": "node test.js",
|
|
14
|
-
"update-list": "ts-node updateList.ts"
|
|
15
|
-
},
|
|
16
11
|
"keywords": [
|
|
17
12
|
"pnpm-config"
|
|
18
13
|
],
|
|
19
14
|
"license": "MIT",
|
|
20
|
-
"
|
|
15
|
+
"devEngines": {
|
|
16
|
+
"runtime": {
|
|
17
|
+
"name": "node",
|
|
18
|
+
"version": "24",
|
|
19
|
+
"onFail": "download"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
21
22
|
"devDependencies": {
|
|
22
23
|
"eslint": "^9.39.2",
|
|
23
24
|
"neostandard": "^0.12.2",
|
|
24
|
-
"ts-node": "^10.9.2"
|
|
25
|
+
"ts-node": "^10.9.2",
|
|
26
|
+
"node": "runtime:24"
|
|
25
27
|
},
|
|
26
28
|
"funding": "https://opencollective.com/pnpm",
|
|
27
29
|
"repository": {
|
|
@@ -31,5 +33,10 @@
|
|
|
31
33
|
"homepage": "https://github.com/pnpm/trusted-deps#readme",
|
|
32
34
|
"bugs": {
|
|
33
35
|
"url": "https://github.com/pnpm/trusted-deps/issues"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"lint": "eslint .",
|
|
39
|
+
"test": "node test.js",
|
|
40
|
+
"update-list": "ts-node updateList.ts"
|
|
34
41
|
}
|
|
35
|
-
}
|
|
42
|
+
}
|