Files
dsabot/package.json
dependabot[bot] 6a52df3f28 Bump nedb-promises from 4.1.2 to 4.1.3 (#42)
Bumps [nedb-promises](https://github.com/bajankristof/nedb-promises) from 4.1.2 to 4.1.3.
- [Release notes](https://github.com/bajankristof/nedb-promises/releases)
- [Changelog](https://github.com/bajankristof/nedb-promises/blob/master/CHANGELOG.md)
- [Commits](https://github.com/bajankristof/nedb-promises/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-05-06 18:55:38 +00:00

58 lines
1.5 KiB
JSON

{
"name": "dsabot",
"version": "1.6.2",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint commands/",
"start": "node index.js",
"test": "jest --collectCoverage"
},
"_moduleAliases": {
"@dsabot": "functions",
"@data": "data",
"@Commands": "commands",
"@Lib": "lib"
},
"author": "",
"license": "ISC",
"dependencies": {
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"module-alias": "^2.2.2",
"nedb-promises": "^4.1.3",
"node-fetch": "^2.6.1",
"random": "^3.0.6"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/.github/**",
"!**/__tests__/**",
"!**/__mocks__/**"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/__tests__/",
"<rootDir>/.github/",
"<rootDir>/coverage/",
"<rootDir>/__mocks__/"
],
"coverageDirectory": "coverage"
}
}