@restqa/restqa
Version:
An all in one test automation runner
146 lines (145 loc) • 4.07 kB
JSON
{
"name": "@restqa/restqa",
"version": "0.0.39-beta.1",
"description": "An all in one test automation runner",
"scripts": {
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:functional": "bats bin/tests",
"lint:fix": "eslint --fix src/ bin/restqa",
"lint": "eslint src/ bin/restqa",
"format": "prettier --check src dashboard/src",
"format:fix": "prettier --write src dashboard/src",
"example": "bin/restqa run example/",
"build": "npm run build --prefix ./dashboard",
"dashboard:install": "npm install --prefix ./dashboard",
"dashboard:serve": "npm run serve --prefix ./dashboard",
"dashboard:build": "npm run build",
"dashboard:test": "npm run test --prefix ./dashboard",
"dashboard:test:watch": "npm run test:watch --prefix ./dashboard",
"dashboard:example": "npm run dashboard:build && ./bin/restqa dashboard -c ./bin/tests/features/success/.restqa.yml",
"dashboard:dev": "concurrently \"npm run dashboard:serve\" \"./bin/restqa dashboard -c ./bin/tests/features/multi-env/.restqa.yml\"",
"dashboard:dev:no-config": "concurrently \"npm run dashboard:serve\" \"./bin/restqa dashboard --no-config\"",
"dashboard:lint": "npm run lint --prefix ./dashboard"
},
"keywords": [
"api",
"restapi",
"cucumber-export",
"test",
"cucumber",
"restqa"
],
"files": [
"dashboard/dist",
"src",
"example",
"bin",
"!**/**/*.test.js",
"!bin/tests"
],
"author": "Olivier Rodomond",
"license": "MIT",
"dependencies": {
"@cucumber/cucumber": "^7.3.0",
"@restqa/cucumber-export": "^0.1.14",
"@restqa/restqapi": "^0.1.2",
"@restqa/restqdata": "^0.1.1",
"chalk": "^4.0.0",
"commander": "^8.0.0",
"console-table-printer": "^2.9.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.1",
"express": "^4.17.1",
"fastify-express": "^0.3.3",
"fastify-plugin": "^3.0.0",
"glob": "^7.1.7",
"inquirer": "^7.3.3",
"joi": "^17.4.0",
"socket.io": "^4.0.2",
"treekill": "^1.0.0",
"update-notifier": "^5.1.0",
"yaml": "^1.9.2"
},
"bin": {
"restqa": "./bin/restqa"
},
"engines": {
"node": ">=12.2.0"
},
"main": "src/index.js",
"devDependencies": {
"@restqa/plugin": "0.0.3",
"bats": "^1.3.0",
"bats-assert": "git+https://github.com/bats-core/bats-assert.git",
"bats-file": "git+https://github.com/bats-core/bats-file.git",
"bats-support": "git+https://github.com/bats-core/bats-support.git",
"concurrently": "^6.1.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"fastify": "^3.22.0",
"got": "^11.8.2",
"jest": "^26.6.3",
"jest-runner-eslint": "^0.10.0",
"nock": "^13.0.11",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
}
},
"jest": {
"verbose": true,
"watchPlugins": [
"jest-runner-eslint/watch-fix"
],
"moduleFileExtensions": [
"js"
],
"projects": [
{
"displayName": {
"name": "test",
"color": "yellow"
},
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/bin/restqa",
"<rootDir>/src/**/*.js"
]
}
]
},
"jest-runner-eslint": {
"cliOptions": {
"fix": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/restqa/restqa.git"
},
"bugs": {
"url": "https://github.com/restqa/restqa/issues"
},
"homepage": "https://restqa.io",
"trackingCode": "UA-118770210-1"
}