-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
90 lines (90 loc) · 2.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@nut-tree/nut-js",
"version": "3.1.2",
"license": "Apache-2.0",
"main": "dist/index",
"typings": "dist/index",
"description": "Native system automation for node.js",
"author": {
"name": "Simon Hofmann",
"email": "[email protected]",
"url": "https://s1h.org"
},
"homepage": "https://nutjs.dev",
"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",
"arm64"
],
"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 .",
"compile:dev": "npm run clean && tsc -p . --watch",
"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 --entryPointStrategy expand ./lib",
"prepare": "husky install"
},
"dependencies": {
"@nut-tree/libnut": "2.5.2",
"clipboardy": "2.3.0",
"jimp": "0.16.13",
"node-abort-controller": "2.0.0"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.7.10",
"husky": "8.0.1",
"istanbul-merge": "1.1.1",
"jest": "27.1.0",
"lint-staged": "13.0.3",
"nyc": "15.1.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sneer": "1.0.1",
"ts-jest": "27.0.5",
"ts-node": "10.9.1",
"typedoc": "0.23.14",
"typescript": "4.8.3",
"version-bump-prompt": "6.1.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}