-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 933 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
{
"name": "stream-generator",
"version": "0.1.14",
"description": "Make a readable stream out of any byte generator. An easy way to wrap a random, pseudo-random or just any number generator into a stream of bytes.",
"main": "index.js",
"scripts": {
"test": "mocha test/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heroqu/stream-generator.git"
},
"keywords": [
"stream",
"readable",
"generator",
"bytes",
"pseudo-random",
"stub"
],
"author": "Heroqu",
"license": "MIT",
"bugs": {
"url": "https://github.com/heroqu/stream-generator/issues"
},
"homepage": "https://github.com/heroqu/stream-generator#readme",
"devDependencies": {
"@offirmo/random": "^2.0.4",
"chai": "^4.1.2",
"hash-through": "^0.1.16",
"mocha": "^5.2.0",
"stream-limiter": "^0.1.10"
},
"dependencies": {
"readable-stream": "^2.3.6"
}
}