forked from ashi009/node-fast-crc32c
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 901 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 901 Bytes
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
{
"name": "fast-crc32c",
"description": "CRC32C algorithm with hardware acceleration and software fallback.",
"version": "2.0.0",
"author": "Xiaoyi Shi <ashi009@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ashi009/node-fast-crc32c.git"
},
"main": "./loader",
"optionalDependencies": {
"@node-rs/crc32": "^0.1.7"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"benchmark": "node benchmark"
},
"keywords": [
"crc",
"crc32",
"crc32c",
"sse",
"sse4",
"sse4.2"
],
"devDependencies": {
"benchtable": "^0.1.0",
"buffer-crc32": "^0.2.13",
"coveralls": "^3.0.6",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"random-string": "^0.2.0",
"should": "^13.2.3",
"sse4_crc32": "^6.0.1"
}
}