-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@ui5/shrinkwrap-extractor",
"version": "1.0.0",
"private": true,
"description": "Convert npm package-lock.json files to npm-shrinkwrap.json format for specific packages in monorepos",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"main": "lib/convertPackageLockToShrinkwrap.js",
"bin": {
"shrinkwrap-extractor": "cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/UI5/cli.git",
"directory": "internal/shrinkwrap-extractor"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"unit": "node --test test/lib/convertToShrinkwrap.js",
"unit-watch": "node --test --watch test/lib/convertToShrinkwrap.js",
"coverage": "node --test --experimental-test-coverage 'test/lib/convertToShrinkwrap.js'",
"lint": "eslint ."
},
"keywords": [
"npm",
"shrinkwrap",
"package-lock",
"monorepo",
"dependencies"
],
"type": "module",
"engines": {
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"dependencies": {
"@npmcli/arborist": "^9.1.7",
"@npmcli/config": "^10.4.0",
"pacote": "^21.0.4"
},
"devDependencies": {
"eslint": "^10.2.0"
}
}