Skip to content

Commit 1885e3f

Browse files
committed
license, contributing, etc.
1 parent b9cea73 commit 1885e3f

File tree

4 files changed

+57
-2
lines changed

4 files changed

+57
-2
lines changed

CONTRIBUTING.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# create-stream-server is an OPEN Open Source Project
2+
3+
Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.
4+
5+
## Rules
6+
7+
There are a few basic ground-rules for contributors:
8+
9+
1. **No `--force` pushes** or modifying the Git history in any way.
10+
1. **Non-master branches** ought to be used for ongoing work.
11+
1. **External API changes and significant modifications** ought to be subject to an **internal pull-request** to solicit feedback from other contributors.
12+
1. Internal pull-requests to solicit feedback are *encouraged* for any other non-trivial contribution but left to the discretion of the contributor.
13+
1. Contributors should attempt to adhere to the prevailing code-style.
14+
15+
## Releases
16+
17+
Declaring formal releases remains the prerogative of the project maintainer.
18+
19+
## Changes to this arrangement
20+
21+
This is an experiment and feedback is welcome! This document may also be subject to pull-requests or changes by contributors where you believe you have something valuable to add or change.

LICENSE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# The MIT License (MIT)
2+
3+
## Copyright (c) 2014-2015 create-stream-server contributors
4+
5+
*mqtt-packet contributors listed at <https://github.com/mqttjs/create-stream-server#contributors>*
6+
7+
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:
8+
9+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10+
11+
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.

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# create-stream-server
1+
# create-stream-server&nbsp;&nbsp;[![Build Status](https://travis-ci.org/mqttjs/create-stream-server.png)](https://travis-ci.org/mqttjs/create-stream-server)
22

33
**create multiple stream servers easily**
44

@@ -44,3 +44,23 @@ servers.destroy(function(){
4444
});
4545
```
4646

47+
## Contributing
48+
49+
create-stream-server is an **OPEN Open Source Project**. This means that:
50+
51+
> Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.
52+
53+
See the [CONTRIBUTING.md](https://github.com/mqttjs/create-stream-server/blob/master/CONTRIBUTING.md) file for more details.
54+
55+
### Contributors
56+
57+
create-stream-server is only possible due to the excellent work of the following contributors:
58+
59+
<table><tbody>
60+
<tr><th align="left">Joël Gähwiler</th><td><a href="https://github.com/256dpi">GitHub/256dpi</a></td><td><a href="http://twitter.com/256dpi">Twitter/@256dpi</a></td></tr>
61+
<tr><th align="left">Matteo Collina</th><td><a href="https://github.com/mcollina">GitHub/mcollina</a></td><td><a href="http://twitter.com/matteocollina">Twitter/@matteocollina</a></td></tr>
62+
</tbody></table>
63+
64+
### License
65+
66+
MIT

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@
33
"version": "0.0.1",
44
"description": "create multiple stream servers easily",
55
"main": "index.js",
6+
"contributors": [
7+
"Joël Gähwiler <[email protected]> (https://github.com/256dpi)",
8+
"Matteo Collina <[email protected]> (https://github.com/mcollina)"
9+
],
610
"scripts": {
711
"test": "./node_modules/.bin/mocha --reporter list *.js"
812
},
913
"repository": {
1014
"type": "git",
1115
"url": "https://github.com/mqttjs/create-stream-server.git"
1216
},
13-
"author": "Joël Gähwiler <[email protected]>",
1417
"license": "MIT",
1518
"bugs": {
1619
"url": "https://github.com/mqttjs/create-stream-server/issues"

0 commit comments

Comments
 (0)