-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 886 Bytes
/
package.json
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
38
39
40
41
42
{
"name": "string-replace-stream",
"version": "0.0.2",
"description": "Replace one string with another in a Node.JS Stream",
"main": "string-replace-stream.js",
"files": [
"string-replace-stream.js"
],
"scripts": {
"test": "mocha tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/almost/string-replace-stream"
},
"keywords": [
"streams",
"stream",
"streamiing",
"streams2",
"replace",
"search",
"text"
],
"author": {
"name": "Thomas Parslow",
"email": "[email protected]",
"url": "http://almostobsolete.net/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/almost/string-replace-stream/issues"
},
"devDependencies": {
"concat-stream": "^1.5.2",
"expect.js": "^0.3.1",
"mocha": "^2.2.1"
},
"dependencies": {
"through2": "^2.0.0"
}
}