@jakechampion/cli-testing-library
Version:
Small but powerful library for testing CLI the way it is used by people.
42 lines (41 loc) • 1.18 kB
JSON
{
"name": "@jakechampion/cli-testing-library",
"version": "1.0.0",
"description": "Small but powerful library for testing CLI the way it is used by people.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "npm run watch:lib",
"build:cleanup": "rm -rf lib && rm -rf dist",
"build:lib": "tsc --project tsconfig.build.json",
"build": "npm run build:cleanup && npm run build:lib",
"build:ci": "npm run build",
"prepare": "npm run build:lib",
"watch:lib": "tsc --watch --project tsconfig.build.json",
"test": "jest test"
},
"author": "Georgy Marchuk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jakechampion/cli-testing-library.git"
},
"dependencies": {
"keycode": "^2.2.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/prompts": "^2.4.1",
"@types/yargs": "^17.0.13",
"concurrently": "^7.6.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"prompts": "^2.4.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"yargs": "^17.6.2"
}
}