insomnia/packages/insomnia-testing/package.json

35 lines
784 B
JSON
Raw Normal View History

{
"name": "insomnia-testing",
2020-06-29 17:51:46 +00:00
"version": "2.2.10",
"main": "dist/index.js",
"scripts": {
"typecheck": "flow check",
"test": "jest",
"build": "webpack --config webpack.config.js --display errors-only",
"bootstrap": "npm run build",
"prepublish": "npm run build"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
],
"verbose": false,
"resetMocks": true,
"resetModules": true
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"jest": "^26.0.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.19.2",
"chai": "^4.2.0",
"mkdirp": "^1.0.4",
2020-06-25 22:50:39 +00:00
"mocha": "^8.0.1"
}
}