-
-
Notifications
You must be signed in to change notification settings - Fork 796
Update package scan for package.json file #2457
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
0b81dfc
Update package scan for package.json file
Divyansh2512 6f2e3f9
Add test for package.json file containing 'name' field
Divyansh2512 71c7cef
Add test for package.json file not containing 'name' field
Divyansh2512 6e4dabc
Add new tests for npm package.json file
Divyansh2512 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { "name" : "bson" | ||
| , "description" : "A bson parser for node.js and the browser" | ||
| , "main": "../" | ||
| , "directories" : { "lib" : "../lib/bson" } | ||
| , "engines" : { "node" : ">=0.6.0" } | ||
| , "licenses" : [ { "type" : "Apache License, Version 2.0" | ||
| , "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ] | ||
| } |
40 changes: 40 additions & 0 deletions
40
tests/packagedcode/data/npm/with_name/package.json.expected
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| [ | ||
| { | ||
| "type": "npm", | ||
| "namespace": null, | ||
| "name": "bson", | ||
| "version": null, | ||
| "qualifiers": {}, | ||
| "subpath": null, | ||
| "primary_language": "JavaScript", | ||
| "description": "A bson parser for node.js and the browser", | ||
| "release_date": null, | ||
| "parties": [], | ||
| "keywords": [], | ||
| "homepage_url": null, | ||
| "download_url": "https://registry.npmjs.org/bson/-/bson-None.tgz", | ||
| "size": null, | ||
| "sha1": null, | ||
| "md5": null, | ||
| "sha256": null, | ||
| "sha512": null, | ||
| "bug_tracking_url": null, | ||
| "code_view_url": null, | ||
| "vcs_url": null, | ||
| "copyright": null, | ||
| "license_expression": "apache-2.0", | ||
| "declared_license": [{ | ||
| "type": "Apache License, Version 2.0", | ||
| "url": "http://www.apache.org/licenses/LICENSE-2.0" | ||
| }], | ||
| "notice_text": null, | ||
| "root_path": null, | ||
| "dependencies": [], | ||
| "contains_source_code": null, | ||
| "source_packages": [], | ||
| "purl": "pkg:npm/bson", | ||
| "repository_homepage_url": "https://www.npmjs.com/package/bson", | ||
| "repository_download_url": "https://registry.npmjs.org/bson/-/bson-None.tgz", | ||
| "api_data_url": "https://registry.npmjs.org/bson" | ||
| } | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| { | ||
| "version": "0.2.0", | ||
| "description": "A sample Node.js", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "start": "node index.js" | ||
| }, | ||
| "dependencies": { | ||
| "express": "^4.13.3" | ||
| }, | ||
| "engines": { | ||
| "node": "4.0.0" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/heroku/node-js-sample" | ||
| }, | ||
| "keywords": [ | ||
| "node", | ||
| "heroku", | ||
| "express" | ||
| ], | ||
| "author": "Mark Pundsack", | ||
| "contributors": [ | ||
| "Zeke Sikelianos <zeke@sikelianos.com> (http://zeke.sikelianos.com)" | ||
| ], | ||
| "license": "MIT" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess there be a better exception raises, like a new one such as a
NpmWithoutNameError?But we can merge this as is for now. An update later is welcomed!