-
-
Notifications
You must be signed in to change notification settings - Fork 552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Track when a package or dependency is private #3102
Comments
Can I work on this issue? |
@aadityasinha-dotcom sorry for the late reply! No need to ask... please go for it! |
- Insted going forward we'll be using aboutcode-org/scancode-toolkit#3102 to ignore private PURLs Signed-off-by: Keshav Priyadarshi <[email protected]>
- Insted going forward we'll be using aboutcode-org/scancode-toolkit#3102 to ignore private PURLs Signed-off-by: Keshav Priyadarshi <[email protected]>
- Insted going forward we'll be using aboutcode-org/scancode-toolkit#3102 to ignore private PURLs Signed-off-by: Keshav Priyadarshi <[email protected]>
- Insted going forward we'll be using aboutcode-org/scancode-toolkit#3102 to ignore private PURLs Signed-off-by: Keshav Priyadarshi <[email protected]>
- Insted going forward we'll be using aboutcode-org/scancode-toolkit#3102 to ignore private PURLs Signed-off-by: Keshav Priyadarshi <[email protected]>
Here is an odd npm https://registry.npmjs.org/@restart/ui/-/ui-1.0.1.tgz that contains many private package.json |
Carried over from dupe #3524 Handle "multiple personality" packages and private npm correctlyWhen I scan this: https://files.pythonhosted.org/packages/20/ea/b0969834e5d79365731303be8b82423e6b1c293aa92c28335532ab542f83/Django-4.2.5.tar.gz which is an obvious Pypi package, I can see that Django has a package.json at the root, but this is a "private" package: {
"name": "Django",
"private": true,
"scripts": {
"pretest": "eslint .",
"test": "grunt test --verbose"
},
"engines": {
"npm": ">=1.3.0"
},
"devDependencies": {
"eslint": "^8.36.0",
"puppeteer": "^19.8.2",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-qunit": "^7.0.0",
"qunit": "^2.19.4"
}
}
This ends up being confusing downstream in particular in SCIO.
|
Here is some reference info wrt. Pypi |
Reference: #3102 Reference: #1514 Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
Reference: #3102 Reference: #1514 Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
Reference: #3102 Reference: #1514 Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
Short Description
Some local packages are "private" and never published in public repositories.
npm has a private flag for instance https://docs.npmjs.com/cli/v6/configuring-npm/package-json#private
We should have a way to track this as these never have a public URL for example.
The text was updated successfully, but these errors were encountered: