- Bump node-pty from 0.11.0-beta19 to 1.0.0
- Bump xterm-headless from 4.18.0 to 5.5.0
- Rename xterm-headless to @xterm/headless as per https://www.npmjs.com/package/xterm-headless
- Unpin Python 3.11 in e2e test by reverting commit 8097f1eb91 because it's no longer necessary as explained in https://github.com/spring-projects/spring-shell/issues/909#issuecomment-2188962147
- Fixes https://github.com/spring-projects/spring-shell/issues/909
- Fixes https://github.com/spring-projects/spring-shell/issues/921
43 lines
939 B
JSON
43 lines
939 B
JSON
{
|
|
"name": "spring-shell-e2e",
|
|
"version": "2.1.0",
|
|
"description": "spring-shell e2e test framework",
|
|
"main": "./lib/cli.js",
|
|
"exports": {
|
|
".": "./lib/cli.js"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"cli.d.ts": [
|
|
"lib/cli.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/spring-projects/spring-shell.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/spring-projects/spring-shell/issues"
|
|
},
|
|
"homepage": "https://github.com/spring-projects/spring-shell#readme",
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.9",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"dependencies": {
|
|
"node-pty": "^1.0.0",
|
|
"@xterm/headless": "^5.5.0"
|
|
}
|
|
}
|