1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 01:29:17 +02:00
bitjs/package.json
2024-02-04 21:07:05 -08:00

41 lines
1 KiB
JSON

{
"name": "@codedread/bitjs",
"version": "1.2.3",
"description": "Binary Tools for JavaScript",
"homepage": "https://github.com/codedread/bitjs",
"author": "Jeff Schiller",
"license": "MIT",
"keywords": [ "binary", "javascript", "archive", "file", "image",
"pkzip", "zip", "rar", "tar", "gzip",
"unzip", "unrar", "untar", "gunzip",
"gif", "jpeg", "png", "webp",
"codecs", "mp4", "avc", "webm"
],
"main": "./index.js",
"type": "module",
"types": "types/index.d.ts",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/codedread/bitjs.git"
},
"bugs": {
"url": "https://github.com/codedread/bitjs/issues"
},
"devDependencies": {
"c8": "^7.14.0",
"chai": "^4.3.4",
"mocha": "^10.1.0",
"typescript": "^4.8.0"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build-webpshim": "cd build; make",
"coverage": "c8 npm run test",
"test": "./node_modules/.bin/mocha tests/*.spec.js",
"update-types": "tsc"
}
}