-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "aria-at-automation-harness",
"version": "0.0.0",
"private": true,
"type": "module",
"bin": {
"aria-at-harness-agent": "./bin/agent.js",
"aria-at-harness-host": "./bin/host.js"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/node": "^20.8.10",
"@types/text-encoding": "^0.0.38",
"ava": "^4.1.0",
"eslint": "^9.9.0",
"eslint-config-eslint": "^11.0.0",
"globals": "^15.9.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"express": "^4.17.1",
"minimatch": "^9.0.3",
"node-fetch": "^3.3.2",
"selenium-webdriver": "^4.1.0",
"ws": "^8.3.0",
"yargs": "^17.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/bocoup/aria-at-harness",
"scripts": {
"test": "npm run test:types && npm run test:lint && npm run test:unit",
"test:types": "tsc",
"test:lint": "eslint src",
"test:unit": "ava",
"test:update": "ava --update-snapshots",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"ava": {
"timeout": "1m"
}
}