Skip to content

Commit da62fd9

Browse files
author
James Halliday
committed
package.json etc
1 parent c777496 commit da62fd9

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

LICENSE

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
This software is released under the MIT license:
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7+
the Software, and to permit persons to whom the Software is furnished to do so,
8+
subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

package.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "labeled-stream-splicer",
3+
"version": "1.0.0",
4+
"description": "stream splicer with labels",
5+
"main": "index.js",
6+
"dependencies": {
7+
"inherits": "^2.0.1",
8+
"isarray": "~0.0.1",
9+
"stream-splicer": "^1.1.0"
10+
},
11+
"devDependencies": {
12+
"tape": "^2.12.1",
13+
"browser-pack": "^2.0.1",
14+
"concat-stream": "^1.4.6",
15+
"module-deps": "^2.1.2",
16+
"through2": "^1.0.0"
17+
},
18+
"scripts": {
19+
"test": "tape test/*.js"
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "git://github.com/substack/labeled-stream-splicer.git"
24+
},
25+
"homepage": "https://github.com/substack/labeled-stream-splicer",
26+
"keywords": [
27+
"splice",
28+
"stream",
29+
"labels",
30+
"mutable",
31+
"pipeline"
32+
],
33+
"author": {
34+
"name": "James Halliday",
35+
"email": "[email protected]",
36+
"url": "http://substack.net"
37+
},
38+
"license": "MIT"
39+
}

readme.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# labeled-stream-splicer
22

3-
[splicable stream pipeline](https://npmjs.org/package/stream-splicer) with labels
3+
[stream splicer](https://npmjs.org/package/stream-splicer) with labels
44

55
# example
66

0 commit comments

Comments
 (0)