CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json44 linesDownload Raw Back to crc-32
1{2	"name": "crc-32",3	"version": "1.2.2",4	"author": "sheetjs",5	"description": "Pure-JS CRC-32",6	"keywords": [ "crc", "crc32", "checksum" ],7	"bin": {8		"crc32": "bin/crc32.njs"9	},10	"main": "crc32.js",11	"types": "types/index.d.ts",12	"typesVersions": { "*": { "*": ["types/index.d.ts" ] } },13	"dependencies": {14	},15	"devDependencies": {16		"printj": "~1.3.1",17		"exit-on-epipe": "~1.0.1",18		"mocha": "~2.5.3",19		"blanket": "~1.2.3",20		"codepage": "~1.10.0",21		"@sheetjs/uglify-js": "~2.7.3",22		"@types/node": "^8.0.7",23		"dtslint": "^0.1.2",24		"typescript": "2.2.0"25	},26	"repository": { "type": "git", "url": "git://github.com/SheetJS/js-crc32.git" },27	"scripts": {28		"test": "make test",29		"build": "make",30		"lint": "make fullint",31		"dtslint": "dtslint types"32	},33	"config": {34		"blanket": {35			"pattern": "crc32.js"36		}37	},38	"homepage": "https://sheetjs.com/",39	"files": ["crc32.js", "crc32c.js", "bin/crc32.njs", "LICENSE", "README.md", "types/index.d.ts", "types/*.json"],40	"bugs": { "url": "https://github.com/SheetJS/js-crc32/issues" },41	"license": "Apache-2.0",42	"engines": { "node": ">=0.8" }43}44