corde
Version:
A simple library for Discord bot tests
160 lines (159 loc) • 4.81 kB
JSON
{
"name": "corde",
"version": "4.8.0",
"description": "A simple library for Discord bot tests",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "bin"
},
"bin": {
"corde": "bin/corde"
},
"keywords": [
"discord-bot",
"discord-js",
"nodejs",
"testing",
"discord",
"corde",
"test",
"cli",
"typescript-library",
"typescript",
"automated-testing",
"bot"
],
"scripts": {
"clearbuild": "gulp clear",
"build": "bash tasks.sh build",
"build:prod": "gulp && yarn prettier-lib",
"gulp": "gulp",
"release": "release-it",
"test": "jest --silent --detectOpenHandles",
"build:publish": "bash ./scripts/publish.sh",
"generateDocs": "typedoc --plugin typedoc-plugin-markdown src/api",
"prettier-lib": "prettier --write ./lib ./schema",
"dependencies": "depcruise --config ./etc/.dependency-cruiser.js src",
"watch": "bash tasks.sh watch",
"corde": "node ./bin/corde",
"killProcess": "cd ./etc && bash ./build_and_kill.sh",
"e2e": "ts-node ./e2e/pipeline.ts",
"test-with-coverage": "jest --silent --ci --detectOpenHandles --collect-coverage --collectCoverageFrom=src/**/*.ts",
"refresh": "rm -rf ./node_modules ./package-lock.json && yarn install",
"fix-lint": "eslint --fix ./src ./tests",
"np": "np --no-cleanup --no-yarn",
"format": "prettier --write \"src/**/*.ts\"",
"generate:changelog": "auto-changelog --commit-limit false --template ./templates/releaseTemplate.hbs",
"lint": "eslint src/**/*.ts",
"validate-ci": "circleci config validate",
"jestClear": "jest --clearCache",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@microsoft/tsdoc": "^0.14.0",
"@types/buffer-from": "^1.1.0",
"@types/esm": "^3.2.0",
"@types/fs-extra": "^9.0.11",
"@types/glob": "^7.1.3",
"@types/gulp": "^4.0.8",
"@types/gulp-babel": "^6.1.29",
"@types/gulp-strip-comments": "^2.5.0",
"@types/jest": "^27.0.0",
"@types/merge-stream": "^1.1.2",
"@types/mock-fs": "^4.13.0",
"@types/node": "^17.0.2",
"@types/require-from-string": "^1.2.0",
"@types/rewire": "^2.5.28",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.6",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"auto-changelog": "^2.3.0",
"babel-jest": "^28.0.0",
"cli-spinners": "^2.4.0",
"codecov": "^3.6.5",
"dotenv": "^10.0.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-strip-comments": "^2.5.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^8.0.1",
"jest": "^26.6.3",
"pinst": "^3.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.0.0",
"release-it": "^15.0.0",
"require-from-string": "^2.0.2",
"rewire": "^5.0.0",
"semver": "^7.3.5",
"source-map-support": "^0.5.16",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslog": "^3.2.0",
"typedoc": "^0.22.3",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.1.3",
"yarn": "^1.22.10"
},
"dependencies": {
"chalk": "^4.1.1",
"commander": "^9.2.0",
"discord.js": "^12.5.3",
"fast-glob": "^3.2.5",
"fast-json-stable-stringify": "^2.1.0",
"jest-diff": "^28.0.0",
"log-update": "4.0.0",
"ora": "5.4.1",
"pretty-format": "^27.0.1",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"@lucasgmagalhaes:registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cordejs/corde.git"
},
"author": {
"name": "Lucas Gomes",
"email": "lucasgsm88@gmail.com",
"url": "https://github.com/cordejs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cordejs/corde/issues"
},
"homepage": "https://cordejs.org",
"files": [
"lib/**",
"schema/**",
"bin/",
"index.js",
"index.d.ts"
]
}