Files
nut.js/package.json
T
Simon Hofmann 1ec9d62ec3 Feature/307/default imagereader imagewriter (#308)
* (#307) Add jimp dependencz

* (#307) Implement image reader

* (#307) Implement image writer

* (#307) Test data

* (#307) Register both providers

* (#307) Stick to BGR color format when loading images

* (#307) Expose imagereader and imagewriter through utility functions

* (#307) Updated tests to verify calls to Jimp

* (#307) Mock jimp in testcases using the pluginRegistry to avoid ReferenceErrors

* (#307) Mock jimp in e2e testcases to avoid ReferenceErrors
2021-11-05 10:59:50 +01:00

82 lines
2.0 KiB
JSON

{
"name": "@nut-tree/nut-js",
"version": "1.7.0",
"license": "Apache-2.0",
"main": "dist/index",
"typings": "dist/index",
"description": "Native system automation for node.js",
"author": {
"name": "Simon Hofmann",
"email": "dev@simon-hofmann.org",
"url": "https://s1h.org"
},
"repository": {
"type": "git",
"url": "https://github.com/nut-tree/nut.js.git"
},
"bugs": {
"url": "https://github.com/nut-tree/nut.js/issues"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"ia32"
],
"keywords": [
"native",
"system",
"automation",
"testing",
"keyboard",
"mouse",
"process",
"memory",
"window",
"screen",
"monitor",
"display",
"timer",
"clock",
"clipboard"
],
"scripts": {
"clean": "rimraf dist",
"compile": "npm run clean && tsc -p .",
"test": "jest --runInBand",
"test:e2e": "npm --prefix e2e/tests cit",
"coverage": "jest --coverage --runInBand",
"coverage:clean": "rimraf coverage",
"coverage:merge": "istanbul-merge --out coverage/merged/coverage-final.json ./coverage/unit/coverage-final.json ./coverage/e2e/coverage-final.json",
"coverage:merge-report": "nyc report --reporter=lcov --reporter=text --temp-dir=./coverage/merged --report-dir=./coverage/merged",
"watch": "tsc -w -p .",
"publish-next": "npm publish --tag next",
"prepublishOnly": "npm run compile",
"versionBump": "bump --tag --push --all",
"typedoc": "typedoc --options ./typedoc.js --out ./docs lib/"
},
"dependencies": {
"@nut-tree/libnut": "2.1.2",
"clipboardy": "2.3.0",
"jimp": "^0.16.1",
"node-abort-controller": "2.0.0"
},
"devDependencies": {
"@types/clipboardy": "2.0.1",
"@types/jest": "27.0.1",
"@types/node": "16.7.10",
"istanbul-merge": "1.1.1",
"jest": "27.1.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"sneer": "1.0.1",
"ts-jest": "27.0.5",
"typedoc": "0.21.9",
"typescript": "4.4.2",
"version-bump-prompt": "6.1.0"
}
}