insomnia/packages/insomnia-testing/package.json

37 lines
931 B
JSON
Raw Normal View History

{
"private": true,
"name": "insomnia-testing",
"license": "Apache-2.0",
2023-07-28 16:55:48 +00:00
"version": "3.19.0-beta.7",
"author": "Kong <office@konghq.com>",
"repository": {
"type": "git",
"url": "https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-testing"
},
"bugs": {
"url": "https://github.com/Kong/insomnia/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"bootstrap": "npm run build",
2021-12-10 23:10:20 +00:00
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist",
"test": "jest",
"build": "tsc --build tsconfig.build.json",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@jest/globals": "^28.1.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"typescript": "^4.5.5"
},
"dependencies": {
"chai": "^4.3.4",
"mocha": "^8.3.2"
}
}