@@ -75,7 +75,7 @@ your package as it's listed in `npm search`.
75
75
76
76
### homepage
77
77
78
- The url to the project homepage.
78
+ The URL to the project homepage.
79
79
80
80
Example:
81
81
@@ -85,7 +85,7 @@ Example:
85
85
86
86
### bugs
87
87
88
- The url to your project's issue tracker and / or the email address to which
88
+ The URL to your project's issue tracker and / or the email address to which
89
89
issues should be reported. These are helpful for people who encounter
90
90
issues with your package.
91
91
@@ -101,10 +101,10 @@ It should look like this:
101
101
```
102
102
103
103
You can specify either one or both values. If you want to provide only a
104
- url , you can specify the value for "bugs" as a simple string instead of an
104
+ URL , you can specify the value for "bugs" as a simple string instead of an
105
105
object.
106
106
107
- If a url is provided, it will be used by the ` npm bugs ` command.
107
+ If a URL is provided, it will be used by the ` npm bugs ` command.
108
108
109
109
### license
110
110
@@ -511,9 +511,9 @@ Do it like this:
511
511
}
512
512
```
513
513
514
- The URL should be a publicly available (perhaps read-only) url that can be
514
+ The URL should be a publicly available (perhaps read-only) URL that can be
515
515
handed directly to a VCS program without any modification. It should not
516
- be a url to an html project page that you put in your browser. It's for
516
+ be a URL to an html project page that you put in your browser. It's for
517
517
computers.
518
518
519
519
For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the
@@ -636,7 +636,7 @@ install time.
636
636
637
637
#### Git URLs as Dependencies
638
638
639
- Git urls are of the form:
639
+ Git URLs are of the form:
640
640
641
641
``` bash
642
642
< protocol> ://[< user> [:< password> ]@]< hostname> [:< port> ][:][/]< path> [# <commit-ish> | #semver:<semver>]
@@ -683,7 +683,7 @@ will be rebuilt for every installation.
683
683
684
684
# ### GitHub URLs
685
685
686
- As of version 1.1.65, you can refer to GitHub urls as just " foo" :
686
+ As of version 1.1.65, you can refer to GitHub URLs as just " foo" :
687
687
" user/foo-project" . Just as with git URLs, a ` commit-ish` suffix can be
688
688
included. For example:
689
689
@@ -889,7 +889,7 @@ none.
889
889
If a dependency can be used, but you would like npm to proceed if it cannot
890
890
be found or fails to install, then you may put it in the
891
891
` optionalDependencies` object. This is a map of package name to version or
892
- url , just like the ` dependencies` object. The difference is that build
892
+ URL , just like the ` dependencies` object. The difference is that build
893
893
failures do not cause installation to fail. Running ` npm install
894
894
--omit=optional` will prevent these dependencies from being installed.
895
895
0 commit comments