1{
2	"name": "crc-32",
3	"version": "1.2.0",
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",
11	"types": "types",
12	"dependencies": {
13		"printj":"~1.1.0",
14		"exit-on-epipe":"~1.0.1"
15	},
16	"devDependencies": {
17		"mocha":"~2.5.3",
18		"blanket": "~1.2.3",
19		"codepage":"~1.10.0",
20		"@sheetjs/uglify-js":"~2.7.3",
21		"@types/node":"^8.0.7",
22		"dtslint": "^0.1.2",
23		"typescript": "2.2.0"
24	},
25	"repository": { "type":"git", "url":"git://github.com/SheetJS/js-crc32.git" },
26	"scripts": {
27		"test": "make test",
28		"build": "make",
29		"lint": "make fullint",
30		"dtslint": "dtslint types"
31	},
32	"config": {
33		"blanket": {
34			"pattern": "crc32.js"
35		}
36	},
37	"homepage": "http://sheetjs.com/opensource",
38	"files": ["crc32.js", "bin/crc32.njs", "LICENSE", "README.md", "types/index.d.ts", "types/*.json"],
39	"bugs": { "url": "https://github.com/SheetJS/js-crc32/issues" },
40	"license": "Apache-2.0",
41	"engines": { "node": ">=0.8" }
42}
43