@code-bug/restapi
Version:
helper for using restapi in test automation
66 lines (65 loc) • 1.54 kB
JSON
{
"name": "@code-bug/restapi",
"version": "1.0.2",
"author": {
"name": "Code Bug",
"email": "code-bug@outlook.com"
},
"bugs": {
"url": "https://github.com/macmillanhighered/automation-restapi/issues"
},
"dependencies": {
"@code-bug/config": "1.0.0",
"@code-bug/logger": "1.0.0",
"jsonfile": "^6.0.1",
"jsonwebtoken": "^8.5.1",
"request": "2.88.2",
"request-promise-native": "^1.0.8",
"tough-cookie": "^4.0.0"
},
"description": "helper for using restapi in test automation",
"homepage": "https://github.com/macmillanhighered/automation-restapi#readme",
"keywords": [
"request",
"promise",
"native",
"test",
"automation",
"jwt",
"jsonwebtoken",
"tough-cookie",
"rest",
"api"
],
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thomasashwindsilva/restapi.git"
},
"scripts": {
"test": "npm run test"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "4.2.5",
"lint-staged": "10.1.5",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,yaml,yml,md,sh,groovy}": [
"prettier --write"
]
}
}