insomnia/packages/insomnia-smoke-test/package.json

56 lines
1.8 KiB
JSON
Raw Normal View History

2020-08-20 20:08:47 +00:00
{
"private": true,
2020-08-20 20:08:47 +00:00
"name": "insomnia-smoke-test",
"author": "Kong <office@konghq.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Kong/insomnia.git",
"directory": "packages/insomnia-smoke-test"
},
"bugs": {
"url": "https://github.com/kong/insomnia/issues"
},
"version": "2.12.0-beta.0",
2020-08-20 20:08:47 +00:00
"scripts": {
"bootstrap": "npm run build",
2021-12-10 23:10:20 +00:00
"lint": "eslint . --ext .js,.ts,.tsx --cache",
"lint:fix": "npm run lint -- --fix",
"clean": "tsc --build tsconfig.build.json --clean",
"postclean": "rimraf dist",
"build": "tsc --build tsconfig.build.json",
"test:dev": "xvfb-maybe cross-env BUNDLE=dev playwright test",
"test:build": "xvfb-maybe cross-env BUNDLE=build playwright test",
"test:package": "xvfb-maybe cross-env BUNDLE=package playwright test",
"cli": "jest --detectOpenHandles --testPathPattern cli",
"serve": "ts-node server/index.ts",
"with-mock": "concurrently --names server,app --success first --kill-others \"npm run serve\"",
"test:cli": "npm run with-mock \"npm run cli\""
2020-08-20 20:08:47 +00:00
},
"devDependencies": {
"@playwright/test": "^1.19.2",
"@types/concurrently": "^6.0.1",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.5",
"@types/mkdirp": "^1.0.1",
"@types/oidc-provider": "^7.8.1",
"@types/ramda": "^0.27.45",
2022-03-17 12:56:11 +00:00
"@types/uuid": "^8.3.4",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"execa": "^5.0.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"faker": "^5.1.0",
"get-bin-path": "^5.1.0",
"jest": "^26.6.3",
"mkdirp": "^1.0.4",
"oidc-provider": "^7.10.6",
"ramda": "^0.27.1",
"ramda-adjunct": "^2.34.0",
"ts-node": "^9.1.1",
2022-03-17 12:56:11 +00:00
"uuid": "^8.3.2",
"xvfb-maybe": "^0.2.1"
2020-08-20 20:08:47 +00:00
}
}