-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
37 lines (37 loc) · 869 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": "fast-crc32c",
"description": "CRC32C algorithm with hardware acceleration and software fallback.",
"version": "2.0.0",
"author": "Xiaoyi Shi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ashi009/node-fast-crc32c.git"
},
"main": "./loader",
"optionalDependencies": {
"sse4_crc32": "^6.0.1"
},
"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"
}
}