-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
42 lines (42 loc) · 1.18 KB
/
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
{
"name": "sse4_crc32",
"description": "Hardware-accelerated CRC-32C with software fallback",
"keywords": [
"crc",
"crc32",
"crc32c",
"sse",
"sse4",
"sse4.2",
"error detection"
],
"version": "7.0.0",
"author": "Anand Suresh <[email protected]> (https://github.com/anandsuresh)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anandsuresh/sse4_crc32"
},
"bugs": {
"url": "https://github.com/anandsuresh/sse4_crc32/issues"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"bindings": "^1.3.0",
"node-addon-api": "^1.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"crc32": "^0.2.2",
"mocha": "^9.2.2",
"node-gyp": "^5.0.3"
},
"scripts": {
"benchmark": "node benchmark",
"test": "mocha test/*test.js",
"debug": "echo \"platform: $(uname -a)\"; echo \"node.js: $(node -v)\"; echo \"npm: $(npm -v)\"; echo \"node-gyp: $(./node_modules/.bin/node-gyp -v)\"; node -e \"console.log('H/w CRC Support: ' + require('.').hardware_support);\"; node -pe \"require('.');\"",
"hwcrc": "node -e \"console.log('H/w CRC Support: ' + require('.').hardware_support);\""
}
}