package.json
2.7 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"_args": [
[
{
"raw": "block-stream@*",
"scope": null,
"escapedName": "block-stream",
"name": "block-stream",
"rawSpec": "*",
"spec": "*",
"type": "range"
},
"/Users/fzy/project/koa2_Sequelize_project/node_modules/tar"
]
],
"_from": "block-stream@*",
"_id": "block-stream@0.0.9",
"_inCache": true,
"_location": "/block-stream",
"_nodeVersion": "5.6.0",
"_npmOperationalInternal": {
"host": "packages-16-east.internal.npmjs.com",
"tmp": "tmp/block-stream-0.0.9.tgz_1462149852620_0.6890447810292244"
},
"_npmUser": {
"name": "isaacs",
"email": "i@izs.me"
},
"_npmVersion": "3.8.5",
"_phantomChildren": {},
"_requested": {
"raw": "block-stream@*",
"scope": null,
"escapedName": "block-stream",
"name": "block-stream",
"rawSpec": "*",
"spec": "*",
"type": "range"
},
"_requiredBy": [
"/tar"
],
"_resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
"_shasum": "13ebfe778a03205cfe03751481ebb4b3300c126a",
"_shrinkwrap": null,
"_spec": "block-stream@*",
"_where": "/Users/fzy/project/koa2_Sequelize_project/node_modules/tar",
"author": {
"name": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/"
},
"bugs": {
"url": "https://github.com/isaacs/block-stream/issues"
},
"dependencies": {
"inherits": "~2.0.0"
},
"description": "a stream of blocks",
"devDependencies": {
"tap": "^5.7.1"
},
"directories": {},
"dist": {
"shasum": "13ebfe778a03205cfe03751481ebb4b3300c126a",
"tarball": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz"
},
"engines": {
"node": "0.4 || >=0.5.8"
},
"files": [
"block-stream.js"
],
"gitHead": "321cf242ef6d130bb2e59c0565a61ded5dd2673f",
"homepage": "https://github.com/isaacs/block-stream#readme",
"license": "ISC",
"main": "block-stream.js",
"maintainers": [
{
"name": "isaacs",
"email": "i@izs.me"
}
],
"name": "block-stream",
"optionalDependencies": {},
"readme": "# block-stream\n\nA stream of blocks.\n\nWrite data into it, and it'll output data in buffer blocks the size you\nspecify, padding with zeroes if necessary.\n\n```javascript\nvar block = new BlockStream(512)\nfs.createReadStream(\"some-file\").pipe(block)\nblock.pipe(fs.createWriteStream(\"block-file\"))\n```\n\nWhen `.end()` or `.flush()` is called, it'll pad the block with zeroes.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/block-stream.git"
},
"scripts": {
"test": "tap test/*.js --cov"
},
"version": "0.0.9"
}