- Change sample build to use musl on linux - Optionally remove version from jar so that e2e tests don't need to use version in path. - Add better matrix to e2e so that we're able to build on one OS and then test with others. - Fixes #576
43 lines
946 B
JSON
43 lines
946 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": "0.11.0-beta19",
|
|
"xterm-headless": "^4.18.0"
|
|
}
|
|
}
|