CRC-32/ISO-HDLC checksum
0

Configure Feed

Select the types of activity you want to include in your feed.

pkg-crc32 / deno.json
365 B 22 lines
1{ 2 "name": "@mary/crc32", 3 "version": "0.1.1", 4 "license": "0BSD", 5 "exports": { 6 ".": "./lib/mod.ts" 7 }, 8 "tasks": { 9 "bench": "deno bench", 10 "test": "deno test" 11 }, 12 "fmt": { 13 "useTabs": true, 14 "indentWidth": 2, 15 "lineWidth": 110, 16 "semiColons": true, 17 "singleQuote": true 18 }, 19 "publish": { 20 "include": ["lib/", "LICENSE", "README.md", "deno.json"] 21 } 22}