-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 954 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
43
44
45
46
47
48
49
50
51
{
"name": "flow-nans",
"version": "0.0.2",
"description": "Through stream which removes all non-numeric values from a stream.",
"author": {
"name": "Athan Reines",
"email": "athan@nodeprime.com"
},
"contributors": [
{
"name": "Athan Reines",
"email": "athan@nodeprime.com"
}
],
"scripts": {
"test": "mocha"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/flow-io/flow-nans.git"
},
"keywords": [
"stream",
"writable",
"readable",
"transform",
"through",
"flow",
"flow.io",
"filter",
"nan"
],
"bugs": {
"url": "https://github.com/flow-io/flow-nans/issues"
},
"dependencies": {
"through": "~2.3.4"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x",
"stream-spec": "~0.3.5"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}