-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 863 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "string-to-stream",
"description": "Convert a string into a stream (streams2)",
"version": "3.0.1",
"author": "Feross Aboukhadijeh <feross@feross.org> (http://feross.org/)",
"bugs": {
"url": "https://github.com/feross/string-to-stream/issues"
},
"dependencies": {
"readable-stream": "^3.4.0"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"standard": "*",
"tape": "^4.0.0"
},
"homepage": "https://github.com/feross/string-to-stream",
"keywords": [
"convert",
"convert string to stream",
"str",
"str stream",
"stream",
"string",
"string stream",
"string to stream"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/string-to-stream.git"
},
"scripts": {
"test": "standard && tape test/*.js"
}
}