-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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 && npm run depcheck",
"unit": "node --test test/lib/convertToShrinkwrap.js",
"unit-watch": "node --test --watch test/lib/convertToShrinkwrap.js",
"coverage": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/lib/convertToShrinkwrap.js",
"lint": "eslint .",
"depcheck": "depcheck --ignores @ui5/shrinkwrap-extractor,@eslint/js,eslint-config-google,globals"
},
"keywords": [
"npm",
"shrinkwrap",
"package-lock",
"monorepo",
"dependencies"
],
"type": "module",
"dependencies": {
"@npmcli/arborist": "^9.1.7",
"@npmcli/config": "^10.4.0",
"pacote": "^21.0.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"depcheck": "^1.4.7",
"eslint-config-google": "^0.14.0",
"globals": "^16.5.0"
}
}