1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-06 02:39:55 +02:00

Updates to the package.json

This commit is contained in:
Jeff Schiller 2022-10-30 14:33:39 -07:00
parent 241c2bc1be
commit 28e8a8e449

View file

@ -1,6 +1,6 @@
{ {
"name": "@codedread/bitjs", "name": "@codedread/bitjs",
"version": "1.0.0", "version": "1.0.1",
"description": "Binary Tools for JavaScript", "description": "Binary Tools for JavaScript",
"homepage": "https://github.com/codedread/bitjs", "homepage": "https://github.com/codedread/bitjs",
"author": "Jeff Schiller", "author": "Jeff Schiller",
@ -15,7 +15,12 @@
"tar", "tar",
"unzip", "unzip",
"unrar", "unrar",
"untar" "untar",
"file",
"codecs",
"mp4",
"avc",
"webm"
], ],
"main": "./index.js", "main": "./index.js",
"type": "module", "type": "module",
@ -32,10 +37,12 @@
"test": "tests" "test": "tests"
}, },
"scripts": { "scripts": {
"build": "cd build; make",
"test": "./node_modules/.bin/mocha tests/*.spec.js" "test": "./node_modules/.bin/mocha tests/*.spec.js"
}, },
"devDependencies": { "devDependencies": {
"chai": "^4.3.4", "chai": "^4.3.4",
"mocha": "^8.4.0" "mocha": "^8.4.0"
} },
"dependencies": {}
} }