12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "@hoppscotch/cli",
- "version": "0.1.13",
- "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": "pnpx tsup",
- "dev": "pnpx tsup --watch",
- "debugger": "node debugger.js 9999",
- "prepublish": "pnpx tsup",
- "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
- "do-typecheck": "pnpx 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"
- }
- }
|