forked from archiverjs/node-crc32-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 923 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
{
"name": "crc32-stream",
"version": "4.0.0",
"description": "a streaming CRC32 checksumer",
"homepage": "https://github.com/archiverjs/node-crc32-stream",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/archiverjs/node-crc32-stream.git"
},
"bugs": {
"url": "https://github.com/archiverjs/node-crc32-stream/issues"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "mocha --reporter dot"
},
"dependencies": {
"crc": "^3.4.4",
"readable-stream": "^3.4.0"
},
"devDependencies": {
"chai": "^4.0.0",
"mocha": "^8.0.1"
},
"keywords": [
"crc32-stream",
"crc32",
"stream",
"checksum"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}