-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 908 Bytes
/
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
{
"name": "package-locks-checks",
"version": "0.0.8",
"main": "index.js",
"description": "Validate packages inconsistencies to protect your production environments from unexpected dependencies versions",
"keywords": [
"yarn",
"check",
"dependencies",
"yarn.lock",
"package-lock.json",
"version-range"
],
"repository": "https://github.com/TiagoGouvea/package-locks-checks",
"author": "TiagoGouvea - https://github.com/TiagoGouvea",
"license": "MIT",
"scripts": {
"test": "jest --forceExit --detectOpenHandles",
"package-locks-checks": "index.js"
},
"bin": {
"package-locks-checks": "index.js"
},
"preferGlobal": true,
"jest": {
"verbose": true
},
"dependencies": {
"@pnpm/npm-resolver": "^13.0.2",
"commander": "8.2.0",
"semver": "7.3.5"
},
"devDependencies": {
"child_process": "1.0.2",
"jest": "27.2.5"
}
}