forked from invertase/crc16
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 808 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
{
"name": "crc16-itu",
"version": "1.0.6",
"description": "Native node addon to calculate CRC16 ITU values.",
"main": "index.js",
"scripts": {
"test": "node test.js",
"install": "node-gyp rebuild"
},
"engines" : {
"node" : ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shkarimpour/crc16.git"
},
"keywords": [
"error checking",
"crc",
"crc16",
"itu",
"native",
"addon"
],
"author": "shaahin.karimpour902@gmail.com",
"gypfile": true,
"bugs": {
"url": "https://github.com/shkarimpour/crc16/issues"
},
"homepage": "https://github.com/shkarimpour/crc16",
"tonicExample": "var CRC16 = require('crc16-itu'); \n console.log(CRC16('some_value')); \n console.log(CRC16('0d0103588990501766460026', 'hex'));"
}