Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2014-05-24doc per-project .npmrc fileisaacs
2014-05-24Replace cache.clean/read. Document npm-cache(3)isaacs
Fix #5314
2014-05-16Update npmjs.com URL to be http://David\ Beitey
2014-05-14Correct complexity numbering in npm-faqBryan Burgers
Number the complexity hurdles in the "renaming node_modules" section using natural numbers (1, 2, 3, 4) instead of Fibonacci Sequence numbers (1, 2, 3, 5).
2014-05-08Busy Spinner, no http noiseisaacs
One step closer to #5213
2014-05-07updated npm run-script usageGianluca Casati
Seems that npm run-scripts params order is inverted, see https://github.com/npm/npm/blob/master/lib/run-script.js#L13
2014-05-07semver@2.3.0isaacs
This adds the "prerelease", "prepatch", "preminor", "premajor" options for `npm version`.
2014-05-02list runnable scriptsEvan Lucas
Running `npm run` will now list available scripts in the top level package.json. Fixes #4888
2014-05-01doc: fix npm-folders(5) duplicationRobin Tweedie
2014-04-18doc: clarify run-script arguments. Fixes #5087Domenic Denicola
2014-04-18Add in-line link to registry doc pageMatt Hickford
2014-04-18doc: add ^version explanation to package.json docsDomenic Denicola
Fixes #4910
2014-04-18doc: fix bracket ambiguityDomenic Denicola
Fixes #5093
2014-04-10adding save-prefix configuration optionThorsten Lorenz
- npm install --save|--save-dev takes npm.config['save-prefix'] into account when prefixing the version in the package.json - by default the version is prefixed with '^' - added tests for this feature - added documentation for this feature including one example - tests are passing without npmconf changes, but this commit goes alongside [e045042] in npmconf repo
2014-04-02fix link in faqRobert Kowalski
2014-04-02Add a peerDependencies section in package.json docJean Lauliac
Fixes #4739.
2014-03-19documentation fix regarding the publish/unpublish changes.J. Tangelder
2014-03-02docs: fix to reflect the 301 redirect from npmjs.org to www.npmjs.orgWesley de Souza
Passing the curl output to sh was failing since the output was an HTML from a 301 redirect, since npmjs.org is redirecting to www.npmjs.org, therefore I changed the places where this was mentioned.
2014-02-24Update uninstall documentation to include flagsShawn Wildermuth
This update adds the notes to use --save, --save-dev, -g, and --save-optional to the uninstall docs.
2014-02-24fix indentation for code examples in package.json docAlex Gorbatchev
2014-02-22doc: update misc/semver.mdisaacs
2014-02-21Add --save-exact config for --save[-dev|-optional].Tim Oxley
Related: https://github.com/npm/npm/issues/4713 https://github.com/npm/npm/issues/4587
2014-02-17Document the --tag option of npm-publishKris Kowal
2014-02-17docs: More npm, Inc. copy updatesisaacs
2014-02-08Document the arguments for `npm-outdated'.Yeonghoon Park
2014-02-08Document the 'depth' argument for `npm-ls'.Franck Cuny
2014-02-07Replace references to isaacs/npm with npm/npm.Dylan Greene
2014-02-07doc: new init.license default is "ISC"zeke
2014-01-08Support multiple packagenames in `npm docs`.Tim Oxley
2014-01-07Add --long doc for search output in doc/miscTim Oxley
2014-01-07 Tidy search output via columnify.Tim Oxley
* Enable line wrapping|truncation via --long option. * Remove updated time (but leave date) from npm search results. * Increase space for name from 20 to 30 characters. * Remove unnecessary brackets around 'prehistoric'. * Make date column fit the word 'prehistoric' better. * Tighten space between status and name.
2014-01-03doc: Correct outdated stuff in json documentationisaacs
2014-01-03doc: rename repo.md to npm-repo.mdisaacs
2013-12-23Allow npm bugs for the current directoryEvan Lucas
If you are in your local module, you might want to visit the repository without knowing the repo name or typing the name in. This adds `npm bugs .` and `npm bugs` so that the npm-bugs-command behaves like `npm install`, `npm docs`, `npm home`, and `npm repo.` Also fixed the parsing of `./` (instead of `.`). Closes #4204.
2013-12-21updating url for password resetAlex Kocharin
2013-12-16conf: Fix docs, add a test for docsisaacs
Frequently, we use configs that are not documented, and many configs have been removed (sometimes inadvertently!) that WERE documented, which is much worse. Add a test to try to catch that earlier, and also fix it.
2013-12-16Add --ignore-scripts option.Quinn Slack
It causes all npm commands to no longer run package.json scripts. Most notably, `npm install --ignore-scripts` will not run preinstall and prepublish scripts.
2013-12-07Update npm-version doc with correct arguments.Luke Arduini
The 'build' option was removed for semver@2.
2013-12-03Recommend SPDX IDs and OSI approved licenses.CamilleM
2013-12-03Add a new node version manager for windowsTom Huang
2013-12-02Allow npm repo for current local directory, like npm install .Robert Kowalski
If you are in your local module, you might want to visit the repository without knowing the repo name or typing the name in. This adds `npm repo .` and `npm repo` so that the npm-repo-command behaves like npm install
2013-11-26Add docs for init.license.Alexej Yaroshevich
Reflects the feature added in isaacs/init-package-json#7.
2013-11-26Add description of --no-optional argumentGabriel Falkenberg
2013-11-15doc: Remove reference to changelogisaacs
2013-10-28Add docs for --production flag in npm install.Jess Martin
2013-09-22Discover new versions with outdatedRobert Kowalski
Add versions that are not matching the version specified in the package.json as 'latest', at cost of one request more per package. Show versions that are specified by the package.json as 'wanted' Fixes #1428
2013-09-08Fix #3071: cache location documentationDomenic Denicola
2013-09-08document npm prune --productionRobert Kowalski
2013-09-08dedupe: more docs for tag, install and dedupeMaximilian Antoni
2013-08-20Document `user/repo` style GitHub URLsNicholas Kinsey