2020-06-11 23:44:12 +00:00
|
|
|
{
|
2020-07-01 23:28:05 +00:00
|
|
|
"name": "insomnia-inso",
|
2021-05-19 12:50:58 +00:00
|
|
|
"version": "2.3.0-beta.2",
|
2020-07-01 23:52:49 +00:00
|
|
|
"homepage": "https://insomnia.rest",
|
|
|
|
"description": "A CLI for Insomnia Designer - the collaborative API design tool.",
|
|
|
|
"author": "Kong <office@konghq.com>",
|
2021-04-22 20:21:22 +00:00
|
|
|
"license": "Apache-2.0",
|
2021-05-13 11:31:33 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Kong/insomnia.git",
|
|
|
|
"directory": "packages/insomnia-inso"
|
|
|
|
},
|
2020-07-08 20:51:44 +00:00
|
|
|
"bugs": {
|
2021-05-13 11:31:33 +00:00
|
|
|
"url": "https://github.com/kong/insomnia/issues"
|
2020-07-08 20:51:44 +00:00
|
|
|
},
|
2021-05-12 06:35:00 +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-05-12 06:35:00 +00:00
|
|
|
"bootstrap": "npm run build",
|
|
|
|
"lint": "eslint . --ext .js,.ts,.tsx",
|
|
|
|
"lint:fix": "npm run lint -- --fix",
|
|
|
|
"clean": "tsc --build tsconfig.build.json --clean",
|
|
|
|
"postclean": "rimraf dist",
|
|
|
|
"test": "jest --runInBand",
|
2021-05-13 23:30:44 +00:00
|
|
|
"test:watch": "npm run test -- --watch",
|
|
|
|
"test:snapshots": "npm run build && npm run test -- -u",
|
2021-05-12 06:35:00 +00:00
|
|
|
"prebuild": "npm run clean",
|
|
|
|
"build": "webpack --config webpack/webpack.config.development.js",
|
2020-07-07 00:31:48 +00:00
|
|
|
"build:production": "webpack --config webpack/webpack.config.production.js --display errors-only",
|
|
|
|
"start": "npm run build -- --watch",
|
2021-05-20 00:56:49 +00:00
|
|
|
"prepare": "npm run build:production"
|
2020-06-11 23:44:12 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.9.0",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
|
|
|
"@babel/preset-env": "^7.10.2",
|
|
|
|
"@babel/preset-flow": "^7.10.1",
|
2021-05-12 06:35:00 +00:00
|
|
|
"@types/babel__core": "^7.1.12",
|
|
|
|
"@types/babel__preset-env": "^7.9.1",
|
|
|
|
"@types/lodash.flattendeep": "^4.4.6",
|
|
|
|
"@types/mkdirp": "^1.0.1",
|
|
|
|
"@types/nedb": "^1.8.11",
|
|
|
|
"@types/node": "^14.14.32",
|
|
|
|
"@types/rimraf": "^3.0.0",
|
|
|
|
"@types/webpack-node-externals": "^2.5.0",
|
|
|
|
"@types/yaml": "^1.9.7",
|
|
|
|
"execa": "^5.0.0",
|
2020-06-11 23:44:12 +00:00
|
|
|
"get-bin-path": "^5.1.0",
|
2021-05-12 06:35:00 +00:00
|
|
|
"node-loader": "1.0.2",
|
2020-06-30 19:36:15 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2021-05-12 06:35:00 +00:00
|
|
|
"ts-loader": "^8.2.0",
|
|
|
|
"webpack": "4.44.1",
|
2020-06-30 19:36:15 +00:00
|
|
|
"webpack-cli": "^3.3.12",
|
2020-07-07 00:31:48 +00:00
|
|
|
"webpack-merge": "^5.0.7",
|
2020-06-30 19:36:15 +00:00
|
|
|
"webpack-node-externals": "^1.7.2"
|
2020-06-11 23:44:12 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-05-20 00:56:49 +00:00
|
|
|
"@stoplight/spectral": "^5.4.0",
|
2020-06-11 23:44:12 +00:00
|
|
|
"commander": "^5.1.0",
|
2020-08-06 20:45:29 +00:00
|
|
|
"consola": "^2.15.0",
|
2020-07-28 23:47:36 +00:00
|
|
|
"cosmiconfig": "^6.0.0",
|
2021-05-12 06:35:00 +00:00
|
|
|
"enquirer": "^2.3.6",
|
2021-05-19 12:50:58 +00:00
|
|
|
"insomnia-plugin-base64": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-cookie-jar": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-core-themes": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-file": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-hash": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-jsonpath": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-now": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-os": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-prompt": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-request": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-response": "2.3.0-beta.2",
|
|
|
|
"insomnia-plugin-uuid": "2.3.0-beta.2",
|
|
|
|
"insomnia-send-request": "2.3.0-beta.2",
|
|
|
|
"insomnia-testing": "2.3.0-beta.2",
|
2020-07-07 20:17:02 +00:00
|
|
|
"lodash.flattendeep": "^4.4.0",
|
2020-07-15 23:51:15 +00:00
|
|
|
"mkdirp": "^1.0.4",
|
2020-06-30 06:27:21 +00:00
|
|
|
"nedb": "^1.8.0",
|
2021-05-19 12:50:58 +00:00
|
|
|
"openapi-2-kong": "2.3.0-beta.2",
|
2020-07-28 23:47:36 +00:00
|
|
|
"string-argv": "^0.3.1",
|
2020-06-11 23:44:12 +00:00
|
|
|
"yaml": "^1.10.0"
|
|
|
|
}
|
|
|
|
}
|