insomnia/packages/insomnia-inso/package.json

67 lines
2.2 KiB
JSON
Raw Normal View History

2020-06-11 23:44:12 +00:00
{
"private": true,
2020-07-01 23:28:05 +00:00
"name": "insomnia-inso",
2023-08-10 09:54:04 +00:00
"version": "3.19.0-beta.10",
2020-07-01 23:52:49 +00:00
"homepage": "https://insomnia.rest",
"description": "A CLI for Insomnia - The Collaborative API Design Tool",
2020-07-01 23:52:49 +00:00
"author": "Kong <office@konghq.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-inso"
},
2020-07-08 20:51:44 +00:00
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
2020-07-08 20:51:44 +00:00
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
2020-06-11 23:44:12 +00:00
"bin": {
"inso": "bin/inso"
},
"scripts": {
2021-12-10 23:10:20 +00:00
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"test": "echo 'fix these jest --runInBand'",
"test:watch": "npm run test -- --watch",
"test:snapshots": "npm run build && npm run test -- -u",
"test:bundled-inso": "cross-env ./bin/inso run test \"Another suite\" -e \"OpenAPI env\" --src src/db/fixtures/nedb",
"type-check": "tsc --noEmit --project tsconfig.json",
"build": "esr esbuild.ts",
"build:production": "cross-env NODE_ENV=production esr esbuild.ts",
"start": "ESBUILD_WATCH=true esr esbuild.ts",
"prepackage": "npm run build:production",
"package": "npx -y pkg@5.8.1 . --output binaries/inso --targets host",
"postpackage": "esr src/scripts/verify-pkg.ts",
"artifacts": "esr src/scripts/artifacts.ts"
2020-06-11 23:44:12 +00:00
},
"devDependencies": {
"@jest/globals": "^28.1.0",
"@types/nedb": "^1.8.11",
"@types/node": "^20.3.3",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"esbuild": "^0.16.0",
"esbuild-node-externals": "^1.8.0",
"esbuild-runner": "^2.2.2",
"execa": "^5.0.0",
"jest": "^28.1.0",
"jest-mock": "^28.0.2"
2020-06-11 23:44:12 +00:00
},
"dependencies": {
"@stoplight/spectral-core": "^1.18.2",
"@stoplight/spectral-formats": "^1.5.0",
"@stoplight/spectral-ruleset-bundler": "^1.5.2",
"@stoplight/spectral-rulesets": "^1.16.0",
"@stoplight/types": "^13.15.0",
"axios": "^1.4.0",
2020-06-11 23:44:12 +00:00
"commander": "^5.1.0",
"consola": "^2.15.0",
2020-07-28 23:47:36 +00:00
"cosmiconfig": "^6.0.0",
"enquirer": "^2.3.6",
"insomnia-send-request": "../insomnia-send-request",
"nedb": "^1.8.0",
"string-argv": "^0.3.2",
"yaml": "^2.3.1"
2020-06-11 23:44:12 +00:00
}
}