]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/doc/files/package.json.md
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / doc / files / package.json.md
1 package.json(5) -- Specifics of npm's package.json handling
2 ===========================================================
3
4 ## DESCRIPTION
5
6 This document is all you need to know about what's required in your package.json
7 file.  It must be actual JSON, not just a JavaScript object literal.
8
9 A lot of the behavior described in this document is affected by the config
10 settings described in `npm-config(7)`.
11
12 ## name
13
14 The *most* important things in your package.json are the name and version fields.
15 Those are actually required, and your package won't install without
16 them.  The name and version together form an identifier that is assumed
17 to be completely unique.  Changes to the package should come along with
18 changes to the version.
19
20 The name is what your thing is called.
21
22 Some rules:
23
24 * The name must be less than or equal to 214 characters. This includes the scope for
25   scoped packages.
26 * The name can't start with a dot or an underscore.
27 * New packages must not have uppercase letters in the name.
28 * The name ends up being part of a URL, an argument on the command line, and a
29   folder name. Therefore, the name can't contain any non-URL-safe characters.
30
31 Some tips:
32
33 * Don't use the same name as a core Node module.
34 * Don't put "js" or "node" in the name.  It's assumed that it's js, since you're
35   writing a package.json file, and you can specify the engine using the "engines"
36   field.  (See below.)
37 * The name will probably be passed as an argument to require(), so it should
38   be something short, but also reasonably descriptive.
39 * You may want to check the npm registry to see if there's something by that name
40   already, before you get too attached to it. <https://www.npmjs.com/>
41
42 A name can be optionally prefixed by a scope, e.g. `@myorg/mypackage`. See
43 `npm-scope(7)` for more detail.
44
45 ## version
46
47 The *most* important things in your package.json are the name and version fields.
48 Those are actually required, and your package won't install without
49 them.  The name and version together form an identifier that is assumed
50 to be completely unique.  Changes to the package should come along with
51 changes to the version.
52
53 Version must be parseable by
54 [node-semver](https://github.com/isaacs/node-semver), which is bundled
55 with npm as a dependency.  (`npm install semver` to use it yourself.)
56
57 More on version numbers and ranges at semver(7).
58
59 ## description
60
61 Put a description in it.  It's a string.  This helps people discover your
62 package, as it's listed in `npm search`.
63
64 ## keywords
65
66 Put keywords in it.  It's an array of strings.  This helps people
67 discover your package as it's listed in `npm search`.
68
69 ## homepage
70
71 The url to the project homepage.
72
73 **NOTE**: This is *not* the same as "url".  If you put a "url" field,
74 then the registry will think it's a redirection to your package that has
75 been published somewhere else, and spit at you.
76
77 Literally.  Spit.  I'm so not kidding.
78
79 ## bugs
80
81 The url to your project's issue tracker and / or the email address to which
82 issues should be reported. These are helpful for people who encounter issues
83 with your package.
84
85 It should look like this:
86
87     { "url" : "https://github.com/owner/project/issues"
88     , "email" : "project@hostname.com"
89     }
90
91 You can specify either one or both values. If you want to provide only a url,
92 you can specify the value for "bugs" as a simple string instead of an object.
93
94 If a url is provided, it will be used by the `npm bugs` command.
95
96 ## license
97
98 You should specify a license for your package so that people know how they are
99 permitted to use it, and any restrictions you're placing on it.
100
101 If you're using a common license such as BSD-2-Clause or MIT, add a
102 current SPDX license identifier for the license you're using, like this:
103
104     { "license" : "BSD-3-Clause" }
105
106 You can check [the full list of SPDX license IDs](https://spdx.org/licenses/).
107 Ideally you should pick one that is
108 [OSI](https://opensource.org/licenses/alphabetical) approved.
109
110 If your package is licensed under multiple common licenses, use an [SPDX license
111 expression syntax version 2.0 string](https://npmjs.com/package/spdx), like this:
112
113     { "license" : "(ISC OR GPL-3.0)" }
114
115 If you are using a license that hasn't been assigned an SPDX identifier, or if
116 you are using a custom license, use a string value like this one:
117
118     { "license" : "SEE LICENSE IN <filename>" }
119
120 Then include a file named `<filename>` at the top level of the package.
121
122 Some old packages used license objects or a "licenses" property containing an
123 array of license objects:
124
125     // Not valid metadata
126     { "license" :
127       { "type" : "ISC"
128       , "url" : "http://opensource.org/licenses/ISC"
129       }
130     }
131
132     // Not valid metadata
133     { "licenses" :
134       [
135         { "type": "MIT"
136         , "url": "http://www.opensource.org/licenses/mit-license.php"
137         }
138       , { "type": "Apache-2.0"
139         , "url": "http://opensource.org/licenses/apache2.0.php"
140         }
141       ]
142     }
143
144 Those styles are now deprecated. Instead, use SPDX expressions, like this:
145
146     { "license": "ISC" }
147
148     { "license": "(MIT OR Apache-2.0)" }
149
150 Finally, if you do not wish to grant others the right to use a private or
151 unpublished package under any terms:
152
153     { "license": "UNLICENSED"}
154
155 Consider also setting `"private": true` to prevent accidental publication.
156
157 ## people fields: author, contributors
158
159 The "author" is one person.  "contributors" is an array of people.  A "person"
160 is an object with a "name" field and optionally "url" and "email", like this:
161
162     { "name" : "Barney Rubble"
163     , "email" : "b@rubble.com"
164     , "url" : "http://barnyrubble.tumblr.com/"
165     }
166
167 Or you can shorten that all into a single string, and npm will parse it for you:
168
169     "Barney Rubble <b@rubble.com> (http://barnyrubble.tumblr.com/)"
170
171 Both email and url are optional either way.
172
173 npm also sets a top-level "maintainers" field with your npm user info.
174
175 ## files
176
177 The "files" field is an array of files to include in your project.  If
178 you name a folder in the array, then it will also include the files
179 inside that folder. (Unless they would be ignored by another rule.)
180
181 You can also provide a ".npmignore" file in the root of your package or
182 in subdirectories, which will keep files from being included, even
183 if they would be picked up by the files array.  The `.npmignore` file
184 works just like a `.gitignore`.
185
186 Certain files are always included, regardless of settings:
187
188 * `package.json`
189 * `README`
190 * `CHANGES` / `CHANGELOG` / `HISTORY` (any casing and file extension)
191 * `LICENSE` / `LICENCE`
192 * The file in the "main" field
193
194 Conversely, some files are always ignored:
195
196 * `.git`
197 * `CVS`
198 * `.svn`
199 * `.hg`
200 * `.lock-wscript`
201 * `.wafpickle-N`
202 * `.*.swp`
203 * `.DS_Store`
204 * `._*`
205 * `npm-debug.log`
206 * `.npmrc`
207 * `node_modules`
208
209 ## main
210
211 The main field is a module ID that is the primary entry point to your program.
212 That is, if your package is named `foo`, and a user installs it, and then does
213 `require("foo")`, then your main module's exports object will be returned.
214
215 This should be a module ID relative to the root of your package folder.
216
217 For most modules, it makes the most sense to have a main script and often not
218 much else.
219
220 ## bin
221
222 A lot of packages have one or more executable files that they'd like to
223 install into the PATH. npm makes this pretty easy (in fact, it uses this
224 feature to install the "npm" executable.)
225
226 To use this, supply a `bin` field in your package.json which is a map of
227 command name to local file name. On install, npm will symlink that file into
228 `prefix/bin` for global installs, or `./node_modules/.bin/` for local
229 installs.
230
231
232 For example, myapp could have this:
233
234     { "bin" : { "myapp" : "./cli.js" } }
235
236 So, when you install myapp, it'll create a symlink from the `cli.js` script to
237 `/usr/local/bin/myapp`.
238
239 If you have a single executable, and its name should be the name
240 of the package, then you can just supply it as a string.  For example:
241
242     { "name": "my-program"
243     , "version": "1.2.5"
244     , "bin": "./path/to/program" }
245
246 would be the same as this:
247
248     { "name": "my-program"
249     , "version": "1.2.5"
250     , "bin" : { "my-program" : "./path/to/program" } }
251
252 Please make sure that your file(s) referenced in `bin` starts with
253 `#!/usr/bin/env node`, otherwise the scripts are started without the node
254 executable!
255
256 ## man
257
258 Specify either a single file or an array of filenames to put in place for the
259 `man` program to find.
260
261 If only a single file is provided, then it's installed such that it is the
262 result from `man <pkgname>`, regardless of its actual filename.  For example:
263
264     { "name" : "foo"
265     , "version" : "1.2.3"
266     , "description" : "A packaged foo fooer for fooing foos"
267     , "main" : "foo.js"
268     , "man" : "./man/doc.1"
269     }
270
271 would link the `./man/doc.1` file in such that it is the target for `man foo`
272
273 If the filename doesn't start with the package name, then it's prefixed.
274 So, this:
275
276     { "name" : "foo"
277     , "version" : "1.2.3"
278     , "description" : "A packaged foo fooer for fooing foos"
279     , "main" : "foo.js"
280     , "man" : [ "./man/foo.1", "./man/bar.1" ]
281     }
282
283 will create files to do `man foo` and `man foo-bar`.
284
285 Man files must end with a number, and optionally a `.gz` suffix if they are
286 compressed.  The number dictates which man section the file is installed into.
287
288     { "name" : "foo"
289     , "version" : "1.2.3"
290     , "description" : "A packaged foo fooer for fooing foos"
291     , "main" : "foo.js"
292     , "man" : [ "./man/foo.1", "./man/foo.2" ]
293     }
294
295 will create entries for `man foo` and `man 2 foo`
296
297 ## directories
298
299 The CommonJS [Packages](http://wiki.commonjs.org/wiki/Packages/1.0) spec details a
300 few ways that you can indicate the structure of your package using a `directories`
301 object. If you look at [npm's package.json](https://registry.npmjs.org/npm/latest),
302 you'll see that it has directories for doc, lib, and man.
303
304 In the future, this information may be used in other creative ways.
305
306 ### directories.lib
307
308 Tell people where the bulk of your library is.  Nothing special is done
309 with the lib folder in any way, but it's useful meta info.
310
311 ### directories.bin
312
313 If you specify a `bin` directory in `directories.bin`, all the files in
314 that folder will be added.
315
316 Because of the way the `bin` directive works, specifying both a
317 `bin` path and setting `directories.bin` is an error. If you want to
318 specify individual files, use `bin`, and for all the files in an
319 existing `bin` directory, use `directories.bin`.
320
321 ### directories.man
322
323 A folder that is full of man pages.  Sugar to generate a "man" array by
324 walking the folder.
325
326 ### directories.doc
327
328 Put markdown files in here.  Eventually, these will be displayed nicely,
329 maybe, someday.
330
331 ### directories.example
332
333 Put example scripts in here.  Someday, it might be exposed in some clever way.
334
335 ### directories.test
336
337 Put your tests in here. It is currently not exposed, but it might be in the
338 future.
339
340 ## repository
341
342 Specify the place where your code lives. This is helpful for people who
343 want to contribute.  If the git repo is on GitHub, then the `npm docs`
344 command will be able to find you.
345
346 Do it like this:
347
348     "repository" :
349       { "type" : "git"
350       , "url" : "https://github.com/npm/npm.git"
351       }
352
353     "repository" :
354       { "type" : "svn"
355       , "url" : "https://v8.googlecode.com/svn/trunk/"
356       }
357
358 The URL should be a publicly available (perhaps read-only) url that can be handed
359 directly to a VCS program without any modification.  It should not be a url to an
360 html project page that you put in your browser.  It's for computers.
361
362 For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the same
363 shortcut syntax you use for `npm install`:
364
365     "repository": "npm/npm"
366
367     "repository": "gist:11081aaa281"
368
369     "repository": "bitbucket:example/repo"
370
371     "repository": "gitlab:another/repo"
372
373 ## scripts
374
375 The "scripts" property is a dictionary containing script commands that are run
376 at various times in the lifecycle of your package.  The key is the lifecycle
377 event, and the value is the command to run at that point.
378
379 See `npm-scripts(7)` to find out more about writing package scripts.
380
381 ## config
382
383 A "config" object can be used to set configuration parameters used in package
384 scripts that persist across upgrades.  For instance, if a package had the
385 following:
386
387     { "name" : "foo"
388     , "config" : { "port" : "8080" } }
389
390 and then had a "start" command that then referenced the
391 `npm_package_config_port` environment variable, then the user could
392 override that by doing `npm config set foo:port 8001`.
393
394 See `npm-config(7)` and `npm-scripts(7)` for more on package
395 configs.
396
397 ## dependencies
398
399 Dependencies are specified in a simple object that maps a package name to a
400 version range. The version range is a string which has one or more
401 space-separated descriptors.  Dependencies can also be identified with a
402 tarball or git URL.
403
404 **Please do not put test harnesses or transpilers in your
405 `dependencies` object.**  See `devDependencies`, below.
406
407 See semver(7) for more details about specifying version ranges.
408
409 * `version` Must match `version` exactly
410 * `>version` Must be greater than `version`
411 * `>=version` etc
412 * `<version`
413 * `<=version`
414 * `~version` "Approximately equivalent to version"  See semver(7)
415 * `^version` "Compatible with version"  See semver(7)
416 * `1.2.x` 1.2.0, 1.2.1, etc., but not 1.3.0
417 * `http://...` See 'URLs as Dependencies' below
418 * `*` Matches any version
419 * `""` (just an empty string) Same as `*`
420 * `version1 - version2` Same as `>=version1 <=version2`.
421 * `range1 || range2` Passes if either range1 or range2 are satisfied.
422 * `git...` See 'Git URLs as Dependencies' below
423 * `user/repo` See 'GitHub URLs' below
424 * `tag` A specific version tagged and published as `tag`  See `npm-tag(1)`
425 * `path/path/path` See [Local Paths](#local-paths) below
426
427 For example, these are all valid:
428
429     { "dependencies" :
430       { "foo" : "1.0.0 - 2.9999.9999"
431       , "bar" : ">=1.0.2 <2.1.2"
432       , "baz" : ">1.0.2 <=2.3.4"
433       , "boo" : "2.0.1"
434       , "qux" : "<1.0.0 || >=2.3.1 <2.4.5 || >=2.5.2 <3.0.0"
435       , "asd" : "http://asdf.com/asdf.tar.gz"
436       , "til" : "~1.2"
437       , "elf" : "~1.2.3"
438       , "two" : "2.x"
439       , "thr" : "3.3.x"
440       , "lat" : "latest"
441       , "dyl" : "file:../dyl"
442       }
443     }
444
445 ### URLs as Dependencies
446
447 You may specify a tarball URL in place of a version range.
448
449 This tarball will be downloaded and installed locally to your package at
450 install time.
451
452 ### Git URLs as Dependencies
453
454 Git urls can be of the form:
455
456     git://github.com/user/project.git#commit-ish
457     git+ssh://user@hostname:project.git#commit-ish
458     git+ssh://user@hostname/project.git#commit-ish
459     git+http://user@hostname/project/blah.git#commit-ish
460     git+https://user@hostname/project/blah.git#commit-ish
461
462 The `commit-ish` can be any tag, sha, or branch which can be supplied as
463 an argument to `git checkout`.  The default is `master`.
464
465 ## GitHub URLs
466
467 As of version 1.1.65, you can refer to GitHub urls as just "foo":
468 "user/foo-project".  Just as with git URLs, a `commit-ish` suffix can be
469 included.  For example:
470
471     {
472       "name": "foo",
473       "version": "0.0.0",
474       "dependencies": {
475         "express": "visionmedia/express",
476         "mocha": "visionmedia/mocha#4727d357ea"
477       }
478     }
479
480 ## Local Paths
481
482 As of version 2.0.0 you can provide a path to a local directory that contains a
483 package. Local paths can be saved using `npm install --save`, using any of
484 these forms:
485
486     ../foo/bar
487     ~/foo/bar
488     ./foo/bar
489     /foo/bar
490
491 in which case they will be normalized to a relative path and added to your
492 `package.json`. For example:
493
494     {
495       "name": "baz",
496       "dependencies": {
497         "bar": "file:../foo/bar"
498       }
499     }
500
501 This feature is helpful for local offline development and creating
502 tests that require npm installing where you don't want to hit an
503 external server, but should not be used when publishing packages
504 to the public registry.
505
506 ## devDependencies
507
508 If someone is planning on downloading and using your module in their
509 program, then they probably don't want or need to download and build
510 the external test or documentation framework that you use.
511
512 In this case, it's best to map these additional items in a `devDependencies`
513 object.
514
515 These things will be installed when doing `npm link` or `npm install`
516 from the root of a package, and can be managed like any other npm
517 configuration param.  See `npm-config(7)` for more on the topic.
518
519 For build steps that are not platform-specific, such as compiling
520 CoffeeScript or other languages to JavaScript, use the `prepublish`
521 script to do this, and make the required package a devDependency.
522
523 For example:
524
525     { "name": "ethopia-waza",
526       "description": "a delightfully fruity coffee varietal",
527       "version": "1.2.3",
528       "devDependencies": {
529         "coffee-script": "~1.6.3"
530       },
531       "scripts": {
532         "prepublish": "coffee -o lib/ -c src/waza.coffee"
533       },
534       "main": "lib/waza.js"
535     }
536
537 The `prepublish` script will be run before publishing, so that users
538 can consume the functionality without requiring them to compile it
539 themselves.  In dev mode (ie, locally running `npm install`), it'll
540 run this script as well, so that you can test it easily.
541
542 ## peerDependencies
543
544 In some cases, you want to express the compatibility of your package with a
545 host tool or library, while not necessarily doing a `require` of this host.
546 This is usually referred to as a *plugin*. Notably, your module may be exposing
547 a specific interface, expected and specified by the host documentation.
548
549 For example:
550
551     {
552       "name": "tea-latte",
553       "version": "1.3.5",
554       "peerDependencies": {
555         "tea": "2.x"
556       }
557     }
558
559 This ensures your package `tea-latte` can be installed *along* with the second
560 major version of the host package `tea` only. `npm install tea-latte` could
561 possibly yield the following dependency graph:
562
563     â”œâ”€â”€ tea-latte@1.3.5
564     â””── tea@2.2.0
565
566 **NOTE: npm versions 1 and 2 will automatically install `peerDependencies` if
567 they are not explicitly depended upon higher in the dependency tree. In the
568 next major version of npm (npm@3), this will no longer be the case. You will
569 receive a warning that the peerDependency is not installed instead.** The
570 behavior in npms 1 & 2 was frequently confusing and could easily put you into
571 dependency hell, a situation that npm is designed to avoid as much as possible.
572
573 Trying to install another plugin with a conflicting requirement will cause an
574 error. For this reason, make sure your plugin requirement is as broad as
575 possible, and not to lock it down to specific patch versions.
576
577 Assuming the host complies with [semver](http://semver.org/), only changes in
578 the host package's major version will break your plugin. Thus, if you've worked
579 with every 1.x version of the host package, use `"^1.0"` or `"1.x"` to express
580 this. If you depend on features introduced in 1.5.2, use `">= 1.5.2 < 2"`.
581
582 ## bundledDependencies
583
584 This defines an array of package names that will be bundled when publishing the package.
585
586 In cases where you need to preserve npm packages locally or have them available through a single file download, you can bundle the packages in a tarball file by specifying the package names in the `bundledDependencies` array and executing `npm pack`.
587
588 For example:
589 If we define a package.json like this:
590
591 ```
592 {
593   "name": "awesome-web-framework",
594   "version": "1.0.0",
595   "bundledDependencies": [
596     'renderized', 'super-streams'
597   ]
598 }
599 ```
600 we can obtain `awesome-web-framework-1.0.0.tgz` file by running `npm pack`. This file contains the dependencies `renderized` and `super-streams` which can be installed in a new project by executing `npm install awesome-web-framework-1.0.0.tgz`.
601
602 If this is spelled `"bundleDependencies"`, then that is also honored.
603
604 ## optionalDependencies
605
606 If a dependency can be used, but you would like npm to proceed if it cannot be
607 found or fails to install, then you may put it in the `optionalDependencies`
608 object.  This is a map of package name to version or url, just like the
609 `dependencies` object.  The difference is that build failures do not cause
610 installation to fail.
611
612 It is still your program's responsibility to handle the lack of the
613 dependency.  For example, something like this:
614
615     try {
616       var foo = require('foo')
617       var fooVersion = require('foo/package.json').version
618     } catch (er) {
619       foo = null
620     }
621     if ( notGoodFooVersion(fooVersion) ) {
622       foo = null
623     }
624
625     // .. then later in your program ..
626
627     if (foo) {
628       foo.doFooThings()
629     }
630
631 Entries in `optionalDependencies` will override entries of the same name in
632 `dependencies`, so it's usually best to only put in one place.
633
634 ## engines
635
636 You can specify the version of node that your stuff works on:
637
638     { "engines" : { "node" : ">=0.10.3 <0.12" } }
639
640 And, like with dependencies, if you don't specify the version (or if you
641 specify "\*" as the version), then any version of node will do.
642
643 If you specify an "engines" field, then npm will require that "node" be
644 somewhere on that list. If "engines" is omitted, then npm will just assume
645 that it works on node.
646
647 You can also use the "engines" field to specify which versions of npm
648 are capable of properly installing your program.  For example:
649
650     { "engines" : { "npm" : "~1.0.20" } }
651
652 Unless the user has set the `engine-strict` config flag, this
653 field is advisory only will produce warnings when your package is installed as a dependency.
654
655 ## engineStrict
656
657 **NOTE: This feature is deprecated and will be removed in npm 3.0.0.**
658
659 If you are sure that your module will *definitely not* run properly on
660 versions of Node/npm other than those specified in the `engines` object,
661 then you can set `"engineStrict": true` in your package.json file.
662 This will override the user's `engine-strict` config setting.
663
664 Please do not do this unless you are really very very sure.  If your
665 engines object is something overly restrictive, you can quite easily and
666 inadvertently lock yourself into obscurity and prevent your users from
667 updating to new versions of Node.  Consider this choice carefully.
668
669 ## os
670
671 You can specify which operating systems your
672 module will run on:
673
674     "os" : [ "darwin", "linux" ]
675
676 You can also blacklist instead of whitelist operating systems,
677 just prepend the blacklisted os with a '!':
678
679     "os" : [ "!win32" ]
680
681 The host operating system is determined by `process.platform`
682
683 It is allowed to both blacklist, and whitelist, although there isn't any
684 good reason to do this.
685
686 ## cpu
687
688 If your code only runs on certain cpu architectures,
689 you can specify which ones.
690
691     "cpu" : [ "x64", "ia32" ]
692
693 Like the `os` option, you can also blacklist architectures:
694
695     "cpu" : [ "!arm", "!mips" ]
696
697 The host architecture is determined by `process.arch`
698
699 ## preferGlobal
700
701 If your package is primarily a command-line application that should be
702 installed globally, then set this value to `true` to provide a warning
703 if it is installed locally.
704
705 It doesn't actually prevent users from installing it locally, but it
706 does help prevent some confusion if it doesn't work as expected.
707
708 ## private
709
710 If you set `"private": true` in your package.json, then npm will refuse
711 to publish it.
712
713 This is a way to prevent accidental publication of private repositories.  If
714 you would like to ensure that a given package is only ever published to a
715 specific registry (for example, an internal registry), then use the
716 `publishConfig` dictionary described below to override the `registry` config
717 param at publish-time.
718
719 ## publishConfig
720
721 This is a set of config values that will be used at publish-time. It's
722 especially handy if you want to set the tag, registry or access, so that
723 you can ensure that a given package is not tagged with "latest", published
724 to the global public registry or that a scoped module is private by default.
725
726 Any config values can be overridden, but of course only "tag", "registry" and
727 "access" probably matter for the purposes of publishing.
728
729 See `npm-config(7)` to see the list of config options that can be
730 overridden.
731
732 ## DEFAULT VALUES
733
734 npm will default some values based on package contents.
735
736 * `"scripts": {"start": "node server.js"}`
737
738   If there is a `server.js` file in the root of your package, then npm
739   will default the `start` command to `node server.js`.
740
741 * `"scripts":{"install": "node-gyp rebuild"}`
742
743   If there is a `binding.gyp` file in the root of your package and you have not defined an `install` or `preinstall` script, npm will
744   default the `install` command to compile using node-gyp.
745
746 * `"contributors": [...]`
747
748   If there is an `AUTHORS` file in the root of your package, npm will
749   treat each line as a `Name <email> (url)` format, where email and url
750   are optional.  Lines which start with a `#` or are blank, will be
751   ignored.
752
753 ## SEE ALSO
754
755 * semver(7)
756 * npm-init(1)
757 * npm-version(1)
758 * npm-config(1)
759 * npm-config(7)
760 * npm-help(1)
761 * npm-faq(7)
762 * npm-install(1)
763 * npm-publish(1)
764 * npm-uninstall(1)