Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladtsf/node-pkgtool
Tool for managing package dependencies
https://github.com/vladtsf/node-pkgtool
Last synced: about 2 months ago
JSON representation
Tool for managing package dependencies
- Host: GitHub
- URL: https://github.com/vladtsf/node-pkgtool
- Owner: vladtsf
- Created: 2013-01-15T14:14:40.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-04T10:08:56.000Z (almost 12 years ago)
- Last Synced: 2024-11-07T16:50:41.593Z (2 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 315 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pkgtool [![Build Status](https://travis-ci.org/vtsvang/node-pkgtool.png)](https://travis-ci.org/vtsvang/node-pkgtool) [![endorse](http://api.coderwall.com/vtsvang/endorsecount.png)](http://coderwall.com/vtsvang)
Tool for managing package's dependencies versions.
## Features
* Hold dependencies versions
* Update dependencies versions
* Expand dependencies versions from node_modules
* CLI and Programmatical APIs## Installation
$ npm install -g pkgtool
## Usage
### Hold
$ pkgtool hold
or
$ pkgtool /path/to/package/dir hold
### Update
#### all
$ pkgtool update
#### update only specified
$ pkgtool update mocha sinon
### Expand
$ pkgtool expand
### Programmatically
```coffeescript
pkgtool = require "pkgtool"pkgtool( "." ).load ( err ) ->
@expand ( err ) ->
@save ( err ) ->
console.log( "Yay!" ) unless err
```# Development
Add specs for any new or changed functionality.
Run tests: `npm test`
Generate documentation: `npm run-script generate-doc`
# Changelog
* v0.3.5
* Updated runtime-configuration version
* v0.3.4
* Now using asynchronous runtime configuration library
* v0.3.3
* Fixed bug when cli removes package.json contents (Thanks to [Alexandr Lukin](https://github.com/kerbyfc))
* v0.3.2
* Updated documentation and npmignored doc
* v0.3.1
* Fixed issue with require cache
* v0.3.0
* Registry support
* Documentation
* Fixed couple of bugs
* v0.2.2
* Fixed example in README.md
* v0.2.1
* README updated
* v0.2.0
* Logger
* v0.1.0
* First version
* v0.0.1
* Initial structure## License
(The MIT License)
Copyright (c) 2013 Vladimir Tsvang <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.