-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "macaca-macos",
"version": "0.3.0",
"description": "Macaca MacOS driver",
"keywords": [
"macos",
"macaca"
],
"files": [
"dist"
],
"main": "dist/index",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/macacajs/macaca-macos"
},
"dependencies": {
"applescript": "^1.0.0",
"chalk": "^4.1.0",
"commander": "^7.2.0",
"npm-update": "3",
"shelljs": "^0.8.5"
},
"optionalDependencies": {
"robotjs": "^0.6.0"
},
"devDependencies": {
"@jxa/global-type": "^1.3.5",
"@jxa/types": "^1.3.5",
"@types/mocha": "9",
"@types/node": "^16.11.12",
"eslint": "8",
"eslint-config-egg": "12",
"git-contributor": "1",
"husky": "^1.3.1",
"macaca-ecosystem": "1",
"mocha": "8",
"nyc": "^13.1.0",
"ts-node": "^10.9.1",
"typescript": "4"
},
"bin": {
"macaca-macos": "./dist/bin/macaca-macos.js"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha 'test/**/*.test.ts' --require ts-node/register --recursive --timeout 600000",
"lint": "eslint . --ext .ts,js",
"build": "sh ./build.sh",
"prepublishOnly": "npm run build",
"contributor": "git-contributor"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}