This repository was archived by the owner on Jun 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
{
"name": "node-stream",
"version": "1.7.0",
"description": "Utilities for consuming, creating and manipulating node streams.",
"main": "lib/index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text --check-coverage --lines 98 npm test",
"lint": "eslint --ignore-path .gitignore .",
"test": "mocha --recursive",
"docs": "documentation build lib/** --format html --github --sort-order alpha --output docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stezu/node-stream.git"
},
"keywords": [
"streams",
"consume",
"create",
"manipulate",
"forEach",
"map",
"reduce",
"filter",
"pipeline"
],
"files": [
"LICENSE",
"README.md",
"lib/"
],
"author": "Stephen Zuniga <hello@stephenzuniga.com> (http://stephenzuniga.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stezu/node-stream/issues"
},
"homepage": "https://github.com/stezu/node-stream#readme",
"devDependencies": {
"chai": "^4.3.4",
"documentation": "^13.2.1",
"eslint": "^7.24.0",
"eslint-config-stezu": "^2.0.0",
"mocha": "^9.0.0",
"mock-fs": "^5.0.0",
"nyc": "^15.0.0",
"sinon": "^11.1.1"
},
"dependencies": {
"lodash": "^4.17.21",
"pumpify": "^2.0.0",
"readable-stream": "^3.4.0",
"split2": "^3.2.2",
"through2": "^4.0.2"
},
"engines": {
"node": ">= 4.0"
},
"volta": {
"node": "14.16.1"
}
}