* removed dependency to Random * removed dependency to node-fetch * remove node-fetch, add got * unstringify json
57 lines
1.5 KiB
JSON
57 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": "^9.0.0",
|
|
"got": "^11.8.2",
|
|
"module-alias": "^2.2.2",
|
|
"nedb-promises": "^4.1.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|