mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-19 14:06:17 -04:00
82 lines
2.0 KiB
JSON
82 lines
2.0 KiB
JSON
{
|
|
"name": "@nut-tree/nut-js",
|
|
"version": "1.5.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://simon-hofmann.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",
|
|
"lint": "tslint -p tsconfig.json",
|
|
"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.0",
|
|
"clipboardy": "2.0.0",
|
|
"opencv4nodejs-prebuilt": "5.3.0-2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/clipboardy": "2.0.1",
|
|
"@types/jest": "25.1.4",
|
|
"istanbul-merge": "1.1.1",
|
|
"jest": "25.1.0",
|
|
"nyc": "15.1.0",
|
|
"rimraf": "3.0.2",
|
|
"sneer": "1.0.1",
|
|
"ts-jest": "25.4.0",
|
|
"tslint": "6.1.0",
|
|
"typedoc": "0.17.6",
|
|
"typescript": "3.8.3",
|
|
"version-bump-prompt": "6.0.2"
|
|
}
|
|
}
|