Files
nut.js/package.json
T
Simon Hofmann 79ff219001 0.0.4
2019-02-20 01:50:25 +01:00

72 lines
1.4 KiB
JSON

{
"name": "@nut-tree/nut-js",
"version": "0.0.4",
"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": [
"arm",
"x64",
"ia32"
],
"keywords": [
"native",
"system",
"automation",
"testing",
"keyboard",
"mouse",
"process",
"memory",
"window",
"screen",
"monitor",
"display",
"timer",
"clock",
"clipboard"
],
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && tsc -p .",
"test": "jest",
"coverage": "jest --coverage",
"lint": "tslint -p tsconfig.json",
"watch": "tsc -w -p .",
"prepublishOnly": "npm run compile && npm test",
"version": "git add -A lib",
"postversion": "git push && git push --tags"
},
"dependencies": {
"clipboardy": "^1.2.3",
"opencv4nodejs": "^4.14.1",
"robotjs": "^0.5.1"
},
"devDependencies": {
"@types/clipboardy": "^1.1.0",
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typescript": "^3.3.3"
}
}