package.json: prep for Node support

This commit is contained in:
ColonelParrot 2023-05-07 18:55:04 -04:00
parent de20288b8c
commit e493c02738

View File

@ -2,12 +2,12 @@
"name": "jscanify", "name": "jscanify",
"version": "1.0.0", "version": "1.0.0",
"description": "Open-source Javascript mobile document scanner.", "description": "Open-source Javascript mobile document scanner.",
"main": "src/jscanify.js", "main": "src/jscanify-node.js",
"directories": { "directories": {
"doc": "docs" "doc": "docs"
}, },
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "mocha"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -23,5 +23,10 @@
"bugs": { "bugs": {
"url": "https://github.com/ColonelParrot/jscanify/issues" "url": "https://github.com/ColonelParrot/jscanify/issues"
}, },
"homepage": "https://colonelparrot.github.io/jscanify/" "homepage": "https://colonelparrot.github.io/jscanify/",
"dependencies": {
"canvas": "^2.11.2",
"jsdom": "^22.0.0",
"mocha": "^10.2.0"
}
} }