Skip to content

Commit 2f283dd

Browse files
committed
refactor: Add private flag for shrinkwrap extractor
1 parent 3431424 commit 2f283dd

File tree

1 file changed

+31
-30
lines changed

1 file changed

+31
-30
lines changed
Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
{
2-
"name": "shrinkwrap-extractor",
3-
"version": "1.0.0",
4-
"description": "Convert npm package-lock.json files to npm-shrinkwrap.json format for specific packages in monorepos",
5-
"main": "lib/convertPackageLockToShrinkwrap.js",
6-
"bin": {
7-
"shrinkwrap-extractor": "./cli.js"
8-
},
9-
"scripts": {
10-
"test": "npm run lint && npm run unit",
11-
"unit": "node --test test/lib/convertToShrinkwrap.js",
12-
"unit-watch": "node --test --watch test/lib/convertToShrinkwrap.js",
13-
"lint": "eslint ."
14-
},
15-
"keywords": [
16-
"npm",
17-
"shrinkwrap",
18-
"package-lock",
19-
"monorepo",
20-
"dependencies"
21-
],
22-
"type": "module",
23-
"dependencies": {
24-
"@npmcli/arborist": "^9.1.6",
25-
"pacote": "^21.0.3"
26-
},
27-
"devDependencies": {
28-
"@eslint/js": "^9.39.1",
29-
"eslint-config-google": "^0.14.0",
30-
"globals": "^16.5.0"
31-
}
2+
"name": "shrinkwrap-extractor",
3+
"version": "1.0.0",
4+
"private": true,
5+
"description": "Convert npm package-lock.json files to npm-shrinkwrap.json format for specific packages in monorepos",
6+
"main": "lib/convertPackageLockToShrinkwrap.js",
7+
"bin": {
8+
"shrinkwrap-extractor": "./cli.js"
9+
},
10+
"scripts": {
11+
"test": "npm run lint && npm run unit",
12+
"unit": "node --test test/lib/convertToShrinkwrap.js",
13+
"unit-watch": "node --test --watch test/lib/convertToShrinkwrap.js",
14+
"lint": "eslint ."
15+
},
16+
"keywords": [
17+
"npm",
18+
"shrinkwrap",
19+
"package-lock",
20+
"monorepo",
21+
"dependencies"
22+
],
23+
"type": "module",
24+
"dependencies": {
25+
"@npmcli/arborist": "^9.1.6",
26+
"pacote": "^21.0.3"
27+
},
28+
"devDependencies": {
29+
"@eslint/js": "^9.39.1",
30+
"eslint-config-google": "^0.14.0",
31+
"globals": "^16.5.0"
32+
}
3233
}

0 commit comments

Comments
 (0)