|
| 1 | +{ |
| 2 | + "name": "wdio-lambdatest-service", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A WebdriverIO service that manages tunnel and job metadata for LambdaTest.", |
| 5 | + "author": "LambdaTest <[email protected]>", |
| 6 | + "contributors": [ |
| 7 | + "LambdaTest <[email protected]> (https://www.npmjs.com/~lambdatestdev)" |
| 8 | + ], |
| 9 | + "homepage": "https://github.com/LambdaTest/wdio-lambdatest-service", |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "git://github.com/LambdaTest/wdio-lambdatest-service.git" |
| 13 | + }, |
| 14 | + "license": "MIT", |
| 15 | + "main": "./build/index", |
| 16 | + "engines": { |
| 17 | + "node": ">=10.0.0" |
| 18 | + }, |
| 19 | + "scripts": { |
| 20 | + "build": "run-s clean compile", |
| 21 | + "clean": "rimraf ./build", |
| 22 | + "compile": "babel src/ -d build/ --config-file ./babel.config.js", |
| 23 | + "test": "run-s test:*", |
| 24 | + "test:eslint": "eslint --cache src tests", |
| 25 | + "test:coverage": "jest --coverage" |
| 26 | + }, |
| 27 | + "keywords": [ |
| 28 | + "webdriver", |
| 29 | + "wdio", |
| 30 | + "wdio-service", |
| 31 | + "lambdatest" |
| 32 | + ], |
| 33 | + "bugs": { |
| 34 | + "url": "https://github.com/LambdaTest/wdio-lambdatest-service/issues" |
| 35 | + }, |
| 36 | + "dependencies": { |
| 37 | + "@wdio/logger": "6.0.0-alpha.0", |
| 38 | + "@lambdatest/node-tunnel": "*", |
| 39 | + "@lambdatest/node-rest-client": "*" |
| 40 | + }, |
| 41 | + "peerDependencies": { |
| 42 | + "@wdio/cli": "^5.0.0" |
| 43 | + }, |
| 44 | + "publishConfig": { |
| 45 | + "access": "public" |
| 46 | + }, |
| 47 | + "devDependencies": { |
| 48 | + "@babel/cli": "^7.6.2", |
| 49 | + "@babel/core": "^7.6.2", |
| 50 | + "@babel/node": "^7.6.2", |
| 51 | + "@babel/plugin-proposal-class-properties": "^7.5.5", |
| 52 | + "@babel/plugin-proposal-function-bind": "^7.2.0", |
| 53 | + "@babel/plugin-proposal-optional-catch-binding": "^7.2.0", |
| 54 | + "@babel/plugin-syntax-export-default-from": "^7.2.0", |
| 55 | + "@babel/preset-env": "^7.6.2", |
| 56 | + "@babel/register": "^7.6.2", |
| 57 | + "@octokit/rest": "^16.35.2", |
| 58 | + "@types/jest": "^24.0.18", |
| 59 | + "aws-sdk": "^2.539.0", |
| 60 | + "babel-core": "^6.26.3", |
| 61 | + "babel-eslint": "^10.0.3", |
| 62 | + "babel-jest": "^24.9.0", |
| 63 | + "babel-plugin-source-map-support": "^2.1.1", |
| 64 | + "cheerio": "^1.0.0-rc.3", |
| 65 | + "codecov": "^3.6.1", |
| 66 | + "copyfiles": "^2.1.1", |
| 67 | + "cucumber": "^5.1.0", |
| 68 | + "del": "^5.1.0", |
| 69 | + "dox": "^0.9.0", |
| 70 | + "eslint": "^6.5.1", |
| 71 | + "eslint-plugin-import": "^2.18.2", |
| 72 | + "husky": "^3.0.7", |
| 73 | + "inquirer": "^7.0.0", |
| 74 | + "jest": "^24.9.0", |
| 75 | + "lerna": "^3.16.4", |
| 76 | + "lerna-changelog": "^1.0.0", |
| 77 | + "markdox": "^0.1.10", |
| 78 | + "mime-types": "^2.1.24", |
| 79 | + "np": "^5.1.0", |
| 80 | + "npm-run-all": "^4.1.5", |
| 81 | + "recursive-readdir": "^2.2.2", |
| 82 | + "rimraf": "^3.0.0", |
| 83 | + "shelljs": "^0.8.3", |
| 84 | + "source-map-support": "^0.5.13", |
| 85 | + "tempy": "^0.3.0", |
| 86 | + "typescript": "^3.6.3" |
| 87 | + }, |
| 88 | + "husky": { |
| 89 | + "hooks": { |
| 90 | + "pre-commit": "git diff-index --name-only --diff-filter=d HEAD | grep -E \"(.*)\\.js$\" | xargs node_modules/eslint/bin/eslint.js -c .eslintrc.js", |
| 91 | + "pre-push": "npm run test:eslint" |
| 92 | + } |
| 93 | + }, |
| 94 | + "jest": { |
| 95 | + "testMatch": [ |
| 96 | + "<rootDir>/tests/*.test.js" |
| 97 | + ], |
| 98 | + "coverageDirectory": "./coverage/", |
| 99 | + "collectCoverage": true, |
| 100 | + "coverageThreshold": { |
| 101 | + "global": { |
| 102 | + "branches": 80, |
| 103 | + "functions": 95, |
| 104 | + "lines": 95, |
| 105 | + "statements": 95 |
| 106 | + } |
| 107 | + }, |
| 108 | + "testEnvironment": "node", |
| 109 | + "coveragePathIgnorePatterns": [ |
| 110 | + "node_modules/" |
| 111 | + ] |
| 112 | + }, |
| 113 | + "greenkeeper": { |
| 114 | + "lockfiles": { |
| 115 | + "outOfRangeUpdatesOnly": true |
| 116 | + } |
| 117 | + } |
| 118 | +} |
0 commit comments