UNPKG

slack-mock-typed

Version:

Slack API mocker written in TypeScript

90 lines (89 loc) 2.18 kB
{ "name": "slack-mock-typed", "version": "2.4.0", "description": "Slack API mocker written in TypeScript", "main": "index.js", "types": "index.d.ts", "scripts": { "build": "tsc", "test": "jest", "ci": "npm run build && npm test && cat coverage/lcov.info | coveralls", "release": "standard-version", "deploy:prepare": "./scripts/create_npmrc_file.sh" }, "authors": [ { "name": "Yousaf Nabi", "url": "https://github.com/YOU54F", "githubUsername": "YOU54F" } ], "contributors": [ { "name": "Cole Furfaro-Strode", "url": "https://github.com/Skellington-Closet", "githubUsername": "Skellington-Closet" }, { "name": "Kris Kalavantavanich", "url": "https://github.com/kkalavantavanich", "githubUsername": "kkalavantavanich" } ], "license": "MIT", "engines": { "node": ">=6.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/you54f/slack-mock-typed.git" }, "dependencies": { "@types/moxios": "^0.4.9", "axios": "^0.19.2", "moxios": "^0.4.0", "nock": "^10.0.6", "qs": "^6.3.0", "winston": "^2.3.0" }, "devDependencies": { "@commitlint/cli": "8.3.5", "@commitlint/config-conventional": "8.3.4", "@types/jest": "25.2.1", "@types/nock": "10.0.3", "@types/node": "10.17.19", "@types/proxyquire": "1.3.28", "@types/qs": "6.9.1", "@types/sinon": "7.5.2", "@types/winston": "2.4.4", "body-parser": "1.19.0", "coveralls": "3.0.11", "husky": "4.2.5", "jest": "25.3.0", "lint-staged": "10.1.3", "prettier": "1.19.1", "proxyquire": "^1.8.0", "sinon": "9.0.1", "standard-version": "7.1.0", "ts-jest": "25.4.0", "ts-loader": "6.2.2", "ts-node": "8.9.0", "tslint": "5.20.1", "tslint-config-prettier": "1.18.0", "tslint-no-focused-test": "0.5.0", "typescript": "3.8.3" }, "lint-staged": { "src/**/*": [ "prettier --write", "tslint --fix", "git add" ] }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } }