Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: npm/normalize-package-data
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: de56d3e693cf469a841394e7d76be2087947246c
Choose a base ref
...
head repository: npm/normalize-package-data
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e584704af8a85d7b6556bc85c07587e8b0d4ff25
Choose a head ref
  • 12 commits
  • 7 files changed
  • 4 contributors

Commits on Feb 4, 2019

  1. deps: use resolve.isCore instead of is-builtin-module for better …

    …data and better node compat (#99)
    
    PR-URL: #99
    Credit: @ljharb
    Reviewed-By: @aeschright
    ljharb authored and aeschright committed Feb 4, 2019
    Copy the full SHA
    f97372c View commit details

Commits on Feb 5, 2019

  1. 2.5.0

    Audrey Eschright committed Feb 5, 2019
    Copy the full SHA
    dedb606 View commit details

Commits on Oct 10, 2020

  1. Copy the full SHA
    b224ba1 View commit details
  2. Copy the full SHA
    cc89759 View commit details
  3. tap@14.10.8

    ruyadorno committed Oct 10, 2020
    Copy the full SHA
    db9c672 View commit details
  4. chore: remove async dev dep

    ruyadorno committed Oct 10, 2020
    Copy the full SHA
    30afb71 View commit details
  5. semver@7.3.2

    ruyadorno committed Oct 10, 2020
    Copy the full SHA
    0ba7f91 View commit details

Commits on Oct 12, 2020

  1. resolve@1.17.0

    ruyadorno committed Oct 12, 2020
    Copy the full SHA
    7e70f63 View commit details
  2. chore: update engines

    darcyclarke committed Oct 12, 2020
    Copy the full SHA
    e938119 View commit details
  3. hosted-git-info@3.0.6

    darcyclarke committed Oct 12, 2020
    Copy the full SHA
    40d07df View commit details
  4. Copy the full SHA
    6899b0c View commit details

Commits on Oct 13, 2020

  1. 3.0.0

    darcyclarke committed Oct 13, 2020
    Copy the full SHA
    e584704 View commit details
Showing with 7,513 additions and 2,897 deletions.
  1. +1 −0 .gitignore
  2. +1 −1 lib/fixer.js
  3. +7,431 −2,801 package-lock.json
  4. +9 −8 package.json
  5. +23 −34 test/consistency.js
  6. +27 −36 test/github-urls.js
  7. +21 −17 test/normalize.js
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/node_modules/
.nyc_output
2 changes: 1 addition & 1 deletion lib/fixer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var semver = require("semver")
var validateLicense = require('validate-npm-package-license');
var hostedGitInfo = require("hosted-git-info")
var isBuiltinModule = require("is-builtin-module")
var isBuiltinModule = require("resolve").isCore
var depTypes = ["dependencies","devDependencies","optionalDependencies"]
var extractDescription = require("./extract_description")
var url = require("url")
Loading