insomnia/packages/insomnia-cli/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2020-06-11 23:44:12 +00:00
{
"private": true,
2020-06-11 23:44:12 +00:00
"name": "insomnia-cli",
2020-06-29 17:51:46 +00:00
"version": "2.2.10",
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",
"start": "npm run build:watch",
"build": "rimraf dist && babel src --out-dir dist --ignore \"src/**/*.test.js\",\"src/**/*.test.js.snap\"",
"build:watch": "npm run build -- --watch",
"bootstrap": "npm run build",
"prepublish": "npm run build"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
],
"verbose": false,
"resetMocks": true,
"resetModules": true
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@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"
},
"dependencies": {
"commander": "^5.1.0",
2020-06-29 17:51:46 +00:00
"openapi-2-kong": "^2.2.10",
2020-06-11 23:44:12 +00:00
"yaml": "^1.10.0"
}
}