-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "flow-map",
"version": "0.0.3",
"description": "Transform stream which maps each streamed value to another value.",
"author": {
"name": "Athan Reines",
"email": "kgryte@gmail.com"
},
"contributors": [
{
"name": "Athan Reines",
"email": "kgryte@gmail.com"
}
],
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
"codecov": "istanbul cover ./node_modules/.bin/_mocha --dir ./reports/codecov/coverage --report lcovonly -- -R spec && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
},
"main": "./lib",
"bin": {
"flow-map": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git://github.com/flow-io/map.git"
},
"keywords": [
"flow.io",
"flow-io",
"flow",
"stream",
"streams",
"writable",
"readable",
"transform",
"map",
"mapping",
"through"
],
"bugs": {
"url": "https://github.com/flow-io/map/issues"
},
"dependencies": {
"debug": "^2.2.0",
"flow-join": "git://github.com/flow-io/join.git",
"flow-split": "git://github.com/flow-io/split.git",
"minimist": "^1.1.3",
"pkginfo": "^0.3.0",
"readable-stream": "^2.0.2",
"utils-copy": "^1.0.0",
"utils-cwd": "^2.0.0",
"utils-regex-from-string": "^1.0.0",
"validate.io-boolean-primitive": "^1.0.0",
"validate.io-function": "^1.0.2",
"validate.io-nonnegative": "^1.0.0",
"validate.io-object": "^1.0.4"
},
"devDependencies": {
"chai": "3.x.x",
"codecov.io": "^0.1.5",
"istanbul": "^0.3.0",
"jshint": "2.x.x",
"jshint-stylish": "2.x.x",
"mocha": "2.x.x",
"through2": "^2.0.0"
},
"license": "MIT"
}