insomnia/packages/insomnia-inso/package.json

93 lines
2.6 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",
2020-12-07 22:21:36 +00:00
"version": "2.2.28",
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>",
2020-07-08 20:51:44 +00:00
"license": "Apache2",
"repository": "https://github.com/kong/insomnia/tree/develop/packages/insomnia-inso",
"bugs": {
"url": "https://github.com/kong/insomnia"
},
2020-06-11 23:44:12 +00:00
"bin": {
"inso": "bin/inso"
},
"scripts": {
"typecheck": "",
"test": "jest",
"test:watch": "jest --watch",
"test:snapshots": "npm run build && jest -u",
"build": "webpack --config webpack/webpack.config.development.js --display errors-only",
"build:production": "webpack --config webpack/webpack.config.production.js --display errors-only",
"start": "npm run build -- --watch",
2020-06-11 23:44:12 +00:00
"bootstrap": "npm run build",
"prepare": "npm run build:production"
2020-06-11 23:44:12 +00:00
},
"jest": {
"setupFiles": [
"./__jest__/setup.js"
],
2020-06-11 23:44:12 +00:00
"testMatch": [
"**/__tests__/**/*.test.js"
],
"verbose": false,
"resetMocks": true,
"resetModules": true,
"collectCoverage": true,
2020-07-24 01:00:52 +00:00
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 100,
"lines": 95,
"statements": 95
}
}
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",
"execa": "^4.0.2",
"flow-bin": "^0.126.1",
"get-bin-path": "^5.1.0",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.7",
"webpack-node-externals": "^1.7.2"
2020-06-11 23:44:12 +00:00
},
"dependencies": {
2020-06-30 00:00:33 +00:00
"@stoplight/spectral": "^5.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.5",
2020-09-21 23:45:33 +00:00
"insomnia-plugin-base64": "^2.2.24",
"insomnia-plugin-cookie-jar": "^2.2.24",
"insomnia-plugin-core-themes": "^2.2.24",
"insomnia-plugin-file": "^2.2.24",
"insomnia-plugin-hash": "^2.2.24",
"insomnia-plugin-jsonpath": "^2.2.24",
"insomnia-plugin-now": "^2.2.24",
"insomnia-plugin-os": "^2.2.24",
"insomnia-plugin-prompt": "^2.2.24",
"insomnia-plugin-request": "^2.2.24",
2020-09-22 22:38:00 +00:00
"insomnia-plugin-response": "^2.2.25",
2020-09-21 23:45:33 +00:00
"insomnia-plugin-uuid": "^2.2.24",
2020-12-07 22:21:36 +00:00
"insomnia-send-request": "^2.2.28",
2020-11-26 03:12:14 +00:00
"insomnia-testing": "^2.2.26",
"lodash.flattendeep": "^4.4.0",
"mkdirp": "^1.0.4",
"nedb": "^1.8.0",
2020-11-26 03:12:14 +00:00
"openapi-2-kong": "^2.2.26",
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"
}
}