mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
96 lines
3.3 KiB
JSON
96 lines
3.3 KiB
JSON
{
|
|
"private": true,
|
|
"name": "insomnia-inso",
|
|
"version": "3.8.0",
|
|
"homepage": "https://insomnia.rest",
|
|
"description": "A CLI for Insomnia - The Collaborative API Design Tool",
|
|
"author": "Kong <office@konghq.com>",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Kong/insomnia.git",
|
|
"directory": "packages/insomnia-inso"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/kong/insomnia/issues"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"inso": "bin/inso"
|
|
},
|
|
"scripts": {
|
|
"bootstrap": "npm run build",
|
|
"lint": "eslint . --ext .js,.ts,.tsx --cache",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"clean": "tsc --build tsconfig.build.json --clean",
|
|
"postclean": "rimraf dist && rimraf binaries && rimraf compressed && rimraf artifacts",
|
|
"test": "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",
|
|
"build": "concurrently --names source,types \"npm run build:source\" \"npm run build:types\"",
|
|
"build:source": "esr esbuild.ts",
|
|
"build:types": "tsc --build tsconfig.build.json",
|
|
"prebuild:production": "npm run clean",
|
|
"build:production": "cross-env NODE_ENV=production npm run build",
|
|
"start": "concurrently --names source,types \"ESBUILD_WATCH=true npm run build:source\" \"npm run build:types -- --watch\"",
|
|
"prepackage": "npm run build:production",
|
|
"package": "esr src/scripts/pkg.ts",
|
|
"pkg": "pkg .",
|
|
"postpackage": "esr src/scripts/verify-pkg.ts",
|
|
"artifacts": "esr src/scripts/artifacts.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^28.1.0",
|
|
"@types/mkdirp": "^1.0.1",
|
|
"@types/nedb": "^1.8.11",
|
|
"@types/node": "^17.0.21",
|
|
"@types/rimraf": "^3.0.0",
|
|
"@types/yaml": "^1.9.7",
|
|
"concurrently": "^7.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.14.29",
|
|
"esbuild-node-externals": "^1.4.1",
|
|
"esbuild-runner": "^2.2.1",
|
|
"execa": "^5.0.0",
|
|
"get-bin-path": "^5.1.0",
|
|
"jest": "^28.1.0",
|
|
"jest-mock": "^28.0.2",
|
|
"pkg": "^5.3.2",
|
|
"rimraf": "^3.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@stoplight/spectral-core": "^1.16.0",
|
|
"@stoplight/spectral-formats": "^1.4.0",
|
|
"@stoplight/spectral-ruleset-bundler": "^1.5.0",
|
|
"@stoplight/spectral-rulesets": "^1.14.1",
|
|
"@stoplight/types": "^13.8.0",
|
|
"axios": "^0.21.2",
|
|
"commander": "^5.1.0",
|
|
"consola": "^2.15.0",
|
|
"cosmiconfig": "^6.0.0",
|
|
"enquirer": "^2.3.6",
|
|
"insomnia-plugin-base64": "^3.8.0",
|
|
"insomnia-plugin-cookie-jar": "^3.8.0",
|
|
"insomnia-plugin-core-themes": "^3.8.0",
|
|
"insomnia-plugin-default-headers": "^3.8.0",
|
|
"insomnia-plugin-file": "^3.8.0",
|
|
"insomnia-plugin-hash": "^3.8.0",
|
|
"insomnia-plugin-jsonpath": "^3.8.0",
|
|
"insomnia-plugin-now": "^3.8.0",
|
|
"insomnia-plugin-os": "^3.8.0",
|
|
"insomnia-plugin-prompt": "^3.8.0",
|
|
"insomnia-plugin-request": "^3.8.0",
|
|
"insomnia-plugin-response": "^3.8.0",
|
|
"insomnia-plugin-uuid": "^3.8.0",
|
|
"insomnia-send-request": "^3.8.0",
|
|
"insomnia-testing": "^3.8.0",
|
|
"mkdirp": "^1.0.4",
|
|
"nedb": "^1.8.0",
|
|
"openapi-2-kong": "^3.8.0",
|
|
"string-argv": "^0.3.1",
|
|
"yaml": "^1.10.0"
|
|
}
|
|
}
|