Files
hoppscotch/packages/hoppscotch-cli/package.json
2022-05-03 12:39:56 +05:30

56 lines
1.4 KiB
JSON

{
"name": "@hoppscotch/cli",
"version": "0.1.14",
"description": "A CLI to run Hoppscotch test scripts in CI environments.",
"homepage": "https://hoppscotch.io",
"main": "dist/index.js",
"bin": {
"hopp": "bin/hopp"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm exec tsup",
"dev": "pnpm exec tsup --watch",
"debugger": "node debugger.js 9999",
"prepublish": "pnpm exec tsup",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"do-typecheck": "pnpm exec tsc --noEmit"
},
"keywords": [
"cli",
"hoppscotch",
"hopp-cli"
],
"author": "Hoppscotch (support@hoppscotch.io)",
"repository": {
"type": "git",
"url": "https://github.com/hoppscotch/hoppscotch.git"
},
"bugs": {
"url": "https://github.com/hoppscotch/hoppscotch/issues",
"email": "support@hoppscotch.io"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@hoppscotch/data": "workspace:^0.4.2",
"@hoppscotch/js-sandbox": "workspace:^2.0.0",
"@swc/core": "^1.2.163",
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"axios": "^0.21.4",
"chalk": "^4.1.1",
"commander": "^8.0.0",
"esm": "^3.2.25",
"fp-ts": "^2.11.3",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"qs": "^6.10.3",
"tsup": "^5.12.4",
"typescript": "^4.6.3"
}
}