UNPKG

@averagehelper/corde

Version:

A simple library for Discord bot tests. (Republished fork to demonstrate a bugfix)

117 lines (116 loc) 3.25 kB
{ "name": "@averagehelper/corde", "version": "2.0.2-alpha.1", "description": "A simple library for Discord bot tests. (Republished fork to demonstrate a bugfix)", "main": "./index.js", "types": "./index.d.ts", "directories": { "lib": "bin" }, "bin": "bin/corde", "keywords": [ "discord-bot", "discord-js", "nodejs", "testing", "discord", "corde", "test", "cli", "typescript-library", "typescript", "automated-testing", "bot" ], "scripts": { "build": "bash tasks.sh build", "prettier-lib": "prettier --write ./lib", "watch": "bash tasks.sh watch", "corde": "node ./bin/corde", "killProcess": "cd ./etc && bash ./build_and_kill.sh", "e2e": "jest ./e2e --config=./e2e/jest.config.ts --runInBand --detectOpenHandles", "test": "jest --silent --detectOpenHandles", "test-with-coverage": "jest --silent --detectOpenHandles --collect-coverage --collectCoverageFrom=src/**/*.ts", "refresh": "rm -rf ./node_modules ./package-lock.json && yarn install", "fix-lint": "tslint --fix 'src/**/*.ts' 'tests/**/*.ts", "np": "np --no-cleanup --no-yarn", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint --project tsconfig.json -t stylish", "validate-ci": "bash tasks.sh validade-ci", "jestClear": "jest --clearCache", "init-test-bot": "bash tasks.sh init-test-bot", "build-bot": "bash tasks.sh build-test-bot", "task": "bash tasks.sh", "prepublishOnly": "npm run build" }, "devDependencies": { "@babel/core": "^7.10.2", "@babel/preset-env": "^7.10.2", "@babel/preset-typescript": "^7.10.1", "@microsoft/tsdoc": "^0.13.0", "@types/esm": "^3.2.0", "@types/jest": "^26.0.0", "@types/node": "^14.0.22", "@types/require-from-string": "^1.2.0", "@types/rewire": "^2.5.28", "@types/uuid": "^8.3.0", "@types/ws": "^7.2.4", "babel-jest": "^26.0.1", "cli-spinners": "^2.4.0", "codecov": "^3.6.5", "dotenv": "^8.2.0", "husky": "^4.2.3", "jest": "^26.6.3", "jest-mock-process": "^1.4.0", "prettier": "^2.1.2", "pretty-quick": "^3.0.0", "require-from-string": "^2.0.2", "rewire": "^5.0.0", "semver": "^7.3.2", "source-map-support": "^0.5.16", "ts-jest": "^26.4.4", "ts-node": "^9.0.0", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.0.2" }, "dependencies": { "chalk": "^4.0.0", "commander": "^7.0.0", "discord.js": "^12.2.0", "esm": "^3.2.25", "ora": "^5.0.0", "path": "^0.12.7", "rxjs": "^6.5.5", "uuid": "^8.3.1" }, "engines": { "node": ">=12.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/lucasgmagalhaes/corde.git" }, "jest": { "projects": [ "./jest.config.js", "./e2e/jest.config.js" ] }, "author": { "name": "Lucas Gomes", "email": "lucasgsm88@gmail.com", "url": "https://github.com/lucasgmagalhaes" }, "license": "MIT", "bugs": { "url": "https://github.com/lucasgmagalhaes/corde/issues" }, "homepage": "https://github.com/lucasgmagalhaes/corde#readme", "files": [ "lib/**", "bin/", "index.js", "index.d.ts" ] }