-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "@microsoft/tui-test",
"scripts": {
"build": "npx tsc",
"dev": "npm run build && node index.js",
"lint": "eslint src/ --ext .ts,.tsx && prettier src/ --check",
"lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write",
"test:e2e": "npm run build && node index.js e2e.test.ts"
},
"version": "0.0.1-rc.5",
"description": "An end-to-end terminal testing framework for CLI and TUI experiences",
"type": "module",
"engines": {
"node": ">=16.6.0 <21.0.0"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/microsoft/tui-test.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"homepage": "/~https://github.com/microsoft/tui-test#readme",
"files": [
"lib/**",
"index.js",
"index.d.ts",
"shell/**"
],
"main": "index.js",
"types": "index.d.ts",
"bin": {
"tui-test": "index.js"
},
"dependencies": {
"@homebridge/node-pty-prebuilt-multiarch": "^0.11.12",
"@swc/core": "^1.3.102",
"chalk": "^5.3.0",
"color-convert": "^2.0.1",
"commander": "^11.1.0",
"expect": "^29.7.0",
"glob": "^10.3.10",
"jest-diff": "^29.7.0",
"pretty-ms": "^8.0.0",
"proper-lockfile": "^4.1.2",
"which": "^4.0.0",
"workerpool": "^9.1.0",
"@xterm/headless": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@microsoft/tui-test": "file:.",
"@tsconfig/node18": "^18.2.2",
"@types/color-convert": "^2.0.3",
"@types/proper-lockfile": "^4.1.4",
"@types/uuid": "^9.0.7",
"@types/which": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"prettier": "3.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}