https://github.com/librariesio/package-managers
:package: Metadata about every package manager that Libraries.io supports
https://github.com/librariesio/package-managers
Last synced: 9 months ago
JSON representation
:package: Metadata about every package manager that Libraries.io supports
- Host: GitHub
- URL: https://github.com/librariesio/package-managers
- Owner: librariesio
- License: mit
- Archived: true
- Created: 2015-12-17T09:07:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-03-29T09:40:08.000Z (about 8 years ago)
- Last Synced: 2025-02-24T08:23:22.314Z (over 1 year ago)
- Homepage: https://libraries.io/
- Size: 31.3 KB
- Stars: 16
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
# Package Managers
Metadata extracted from [Libraries.io](https://libraries.io) about many different package managers in a standard format.
String interpolation of commands and urls is done using [mustache](https://mustache.github.io/) in an attempt at cross language compatibility.
All data is stored in JSON where the key for each package manager is the name of the repository in lower case.
Each attribute relates to the source of some information about a package that can be inferred from just the package manager, name of the package and optionally it's version.
See [`package-managers.json`](package-managers.json) for the full data set.
## Data format
```JSON
"rubygems": {
"install": "gem install {{name}} {{#version}}-v {{version}}{{/version}}",
"download": "https://rubygems.org/downloads/{{name}}-{{version}}.gem",
"url": "https://rubygems.org/gems/{{name}}{{#version}}/versions/{{version}}{{/version}}",
"documentation": "http://www.rubydoc.info/gems/{{name}}/{{version}}"
}
```
### Valid Keys
#### install
The shell command to install a package, possibly to install a specific version of that package.
#### download
The url to a tarball/zip of the source code of that package, most likely to a specific version of that package.
#### documentation
The url to automatically generated documentation for that package, possibly to a specific version of that package.
#### url
The url for the page on the repository website for that package, possibly to a specific version of that package.
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/librariesio/package-managers. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
## License
The project is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).