github.com/google/osv-scalibr@v0.4.1/guidedremediation/internal/strategy/inplace/testdata/npm/package-lock.json (about) 1 { 2 "name": "test-pkg", 3 "version": "1.0.0", 4 "lockfileVersion": 3, 5 "packages": { 6 "": { 7 "name": "test-pkg", 8 "version": "1.0.0", 9 "dependencies": { 10 "a": "^1.0.0", 11 "b": "^1.0.0", 12 "c": "^1.0.0", 13 "d-aliased1": "npm:d@^1.0.0", 14 "g": "^2.0.0" 15 }, 16 "devDependencies": { 17 "d-aliased2": "npm:d@^1.2.3" 18 } 19 }, 20 "node_modules/a": { 21 "version": "1.0.0", 22 "dependencies": { 23 "d": "^1.0.0", 24 "g": "^1.0.0" 25 } 26 }, 27 "node_modules/a/node_modules/g": { 28 "version": "1.0.0" 29 }, 30 "node_modules/b": { 31 "version": "1.0.0", 32 "dependencies": { 33 "d": "latest", 34 "g": "^1.0.0" 35 } 36 }, 37 "node_modules/b/node_modules/g": { 38 "version": "1.0.0" 39 }, 40 "node_modules/c": { 41 "version": "1.0.0", 42 "dependencies": { 43 "d": "<3" 44 } 45 }, 46 "node_modules/d": { 47 "version": "1.0.0", 48 "dependencies": { 49 "e": "^1.0.0" 50 } 51 }, 52 "node_modules/d-aliased1": { 53 "name": "d", 54 "version": "1.0.0", 55 "dependencies": { 56 "e": "^1.0.0" 57 } 58 }, 59 "node_modules/d-aliased2": { 60 "name": "d", 61 "version": "1.2.3", 62 "dependencies": { 63 "e": "^1.1.0" 64 } 65 }, 66 "node_modules/e": { 67 "version": "1.1.0" 68 }, 69 "node_modules/g": { 70 "version": "2.0.0" 71 } 72 } 73 }