mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
51 lines
1.7 KiB
JSON
51 lines
1.7 KiB
JSON
{
|
|
"private": true,
|
|
"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.3.0-beta.2",
|
|
"scripts": {
|
|
"bootstrap": "npm run build",
|
|
"lint": "eslint . --ext .js,.ts,.tsx",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"clean": "tsc --build tsconfig.build.json --clean",
|
|
"postclean": "rimraf dist",
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"spectron:build": "cross-env BUNDLE=build xvfb-maybe jest --detectOpenHandles --testPathPattern core",
|
|
"spectron:package": "cross-env BUNDLE=package xvfb-maybe jest --detectOpenHandles --testPathPattern core",
|
|
"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\"",
|
|
"test:build": "npm run with-mock \"npm run spectron:build\"",
|
|
"test:package": "npm run with-mock \"npm run spectron:package\""
|
|
},
|
|
"devDependencies": {
|
|
"@types/concurrently": "^6.0.1",
|
|
"@types/express": "^4.17.11",
|
|
"@types/faker": "^5.5.5",
|
|
"@types/mkdirp": "^1.0.1",
|
|
"concurrently": "^5.3.0",
|
|
"cross-env": "^7.0.2",
|
|
"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",
|
|
"spectron": "^11.1.0",
|
|
"spectron-keys": "0.0.1",
|
|
"ts-node": "^9.1.1",
|
|
"xvfb-maybe": "^0.2.1"
|
|
}
|
|
}
|