scancode.io icon indicating copy to clipboard operation
scancode.io copied to clipboard

SCIO: Design how to report file-level Package data that are not part of a top-level Package instance

Open pombredanne opened this issue 3 years ago • 1 comments

When we have left over package data that are not "assembled" in a top level package, we will need to design how these are presented to user.

pombredanne avatar Aug 18 '22 15:08 pombredanne

For example this package.json would not be a top level SCTK package becasue it has no name and no version:

{
  "description": "Sign and unsign cookies",
  "keywords": [
    "cookie",
    "sign",
    "unsign"
  ],
  "author": {
    "name": "TJ Holowaychuk",
    "email": "[email protected]"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/visionmedia/node-cookie-signature.git"
  },
  "dependencies": {},
  "devDependencies": {
    "mocha": "*",
    "should": "*"
  },
  "bugs": {
    "url": "https://github.com/visionmedia/node-cookie-signature/issues"
  },
  "_id": "[email protected]",
  "_from": "[email protected]"
}

pombredanne avatar Aug 18 '22 15:08 pombredanne