mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
8c729ecae7
* extract lint and export logic * add test and update doc * some thoughts * add test each * notes * comments * add more cases * improve types, flatten send request * collection runner poc * verbose * flatten * add bail * stabilise pathing * add test * fix type check * improve testing experience * fix tests * tidy up package.json * tidy up package and test.yml * remove old smoke test --------- Co-authored-by: Filipe Freire <filipe.freire@konghq.com>
65 lines
2.1 KiB
JSON
65 lines
2.1 KiB
JSON
{
|
|
"private": true,
|
|
"name": "insomnia-inso",
|
|
"version": "9.3.3-beta.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": "git+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": {
|
|
"lint": "eslint . --ext .js,.ts,.tsx --cache",
|
|
"test": "esr esbuild.ts && jest --testPathIgnorePatterns=cli.test.ts",
|
|
"test:watch": "npm run test -- --watch",
|
|
"test:bundle": "jest cli.test.ts -t \"inso dev bundle\"",
|
|
"test:binary": "jest cli.test.ts -t \"inso packaged binary\"",
|
|
"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 && rm -rf binaries/inso",
|
|
"package": "npx -y @yao-pkg/pkg@5.11.5 . --output binaries/inso --targets host",
|
|
"postpackage": "node src/scripts/verify-pkg.js",
|
|
"artifacts": "esr src/scripts/artifacts.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@types/nedb": "^1.8.16",
|
|
"@types/node": "^20.12.4",
|
|
"concurrently": "^8.2.2",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.20.2",
|
|
"esbuild-runner": "^2.2.2",
|
|
"execa": "^5.0.0",
|
|
"jest": "^29.7.0",
|
|
"jest-mock": "^29.7.0"
|
|
},
|
|
"dependencies": {
|
|
"@stoplight/spectral-core": "^1.18.3",
|
|
"@stoplight/spectral-formats": "^1.6.0",
|
|
"@stoplight/spectral-ruleset-bundler": "^1.5.2",
|
|
"@stoplight/spectral-rulesets": "^1.18.1",
|
|
"@stoplight/types": "^14.1.1",
|
|
"commander": "^12.1.0",
|
|
"consola": "^2.15.0",
|
|
"cosmiconfig": "^9.0.0",
|
|
"enquirer": "^2.4.1",
|
|
"insomnia-send-request": "../insomnia-send-request",
|
|
"@seald-io/nedb": "^4.0.4",
|
|
"string-argv": "^0.3.2",
|
|
"yaml": "^1.6.0"
|
|
}
|
|
}
|