first commit
This commit is contained in:
60
build/node_modules/stream-to-buffer/.npmignore
generated
vendored
Normal file
60
build/node_modules/stream-to-buffer/.npmignore
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
# Compiled source #
|
||||
###################
|
||||
*.com
|
||||
*.class
|
||||
*.dll
|
||||
*.exe
|
||||
*.o
|
||||
*.so
|
||||
|
||||
# Packages #
|
||||
############
|
||||
# it's better to unpack these files and commit the raw source
|
||||
# git has its own built in compression methods
|
||||
*.7z
|
||||
*.dmg
|
||||
*.gz
|
||||
*.iso
|
||||
*.jar
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
|
||||
# Logs and databases #
|
||||
######################
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
|
||||
# OS generated files #
|
||||
######################
|
||||
.DS_Store*
|
||||
ehthumbs.db
|
||||
Icon?
|
||||
Thumbs.db
|
||||
|
||||
# Node.js #
|
||||
###########
|
||||
lib-cov
|
||||
*.seed
|
||||
*.log
|
||||
*.csv
|
||||
*.dat
|
||||
*.out
|
||||
*.pid
|
||||
*.gz
|
||||
|
||||
pids
|
||||
logs
|
||||
results
|
||||
|
||||
node_modules
|
||||
npm-debug.log
|
||||
|
||||
# Components #
|
||||
##############
|
||||
|
||||
/build
|
||||
/components
|
||||
/vendors
|
||||
*.orig
|
||||
42
build/node_modules/stream-to-buffer/README.md
generated
vendored
Normal file
42
build/node_modules/stream-to-buffer/README.md
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
# Stream to Buffer
|
||||
|
||||
This repository is deprecated.
|
||||
Please use [stream-to](https://github.com/jonathanong/stream-to) instead.
|
||||
|
||||
Concatenate a readable stream's data into a single `Buffer` instance.
|
||||
|
||||
## API
|
||||
|
||||
```js
|
||||
var streamToBuffer = require('stream-to-buffer')
|
||||
|
||||
var stream = // Some readable stream
|
||||
|
||||
streamToBuffer(stream, function (err, buffer) {
|
||||
|
||||
})
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Jonathan Ong me@jongleberry.com
|
||||
|
||||
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.
|
||||
1
build/node_modules/stream-to-buffer/index.js
generated
vendored
Normal file
1
build/node_modules/stream-to-buffer/index.js
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
module.exports = require('stream-to').buffer
|
||||
54
build/node_modules/stream-to-buffer/package.json
generated
vendored
Normal file
54
build/node_modules/stream-to-buffer/package.json
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"stream-to-buffer@0.1.0",
|
||||
"/Users/asciidisco/Desktop/asciidisco.com/build"
|
||||
]
|
||||
],
|
||||
"_from": "stream-to-buffer@0.1.0",
|
||||
"_id": "stream-to-buffer@0.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-JnmdkDqyAlyb1VCsRxcbAPjdgKk=",
|
||||
"_location": "/stream-to-buffer",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "stream-to-buffer@0.1.0",
|
||||
"name": "stream-to-buffer",
|
||||
"escapedName": "stream-to-buffer",
|
||||
"rawSpec": "0.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "0.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/jimp"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/stream-to-buffer/-/stream-to-buffer-0.1.0.tgz",
|
||||
"_spec": "0.1.0",
|
||||
"_where": "/Users/asciidisco/Desktop/asciidisco.com/build",
|
||||
"author": {
|
||||
"name": "Jonathan Ong",
|
||||
"email": "me@jongleberry.com",
|
||||
"url": "http://jongleberry.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jonathanong/stream-to-buffer/issues",
|
||||
"email": "me@jongleberry.com"
|
||||
},
|
||||
"dependencies": {
|
||||
"stream-to": "~0.2.0"
|
||||
},
|
||||
"description": "Concatenate a readable stream's data into a single buffer",
|
||||
"engines": {
|
||||
"node": ">= 0.8"
|
||||
},
|
||||
"homepage": "https://github.com/jonathanong/stream-to-buffer#readme",
|
||||
"license": "MIT",
|
||||
"name": "stream-to-buffer",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/jonathanong/stream-to-buffer.git"
|
||||
},
|
||||
"version": "0.1.0"
|
||||
}
|
||||
Reference in New Issue
Block a user