-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "@bocoup/at-driver-servers",
"version": "0.0.4",
"description": "A WebSocket server which allows clients to observe the text enunciated by a screen reader and to simulate user input ",
"private": true,
"scripts": {
"prettier": "prettier --write shared test",
"test": "npm run test-style && npm run test-types && npm run test-unit",
"test-macos-key-press": "mocha --ui tdd test/test-macos-key-press.js",
"test-style": "prettier --check shared test",
"test-types": "tsc -p tsconfig.json",
"test-unit": "mocha --ui tdd test/test.js test/helpers/**/*.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.17",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.32",
"fs-extra": "^11.2.0",
"mocha": "^9.1.2",
"prettier": "^3.2.4",
"selenium-webdriver": "^4.1.0",
"typescript": "^5.3.3"
},
"dependencies": {
"debug": "^4.3.4",
"robotjs": "^0.6.0",
"uuid": "^9.0.1",
"ws": "^8.2.3",
"yargs": "^17.2.1"
},
"workspaces": [
"packages/*"
]
}