Files
PluralFlux/package.json

43 lines
860 B
JSON
Raw Normal View History

{
"name": "pluralflux",
"version": "1.0.0",
"description": "",
"main": "src/bot.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pieartsy/PluralFlux.git"
},
"private": true,
"dependencies": {
"@fluxerjs/core": "^1.0.9",
2026-02-16 10:36:38 -05:00
"dotenv": "^17.3.1",
"pg": "^8.18.0",
"pg-hstore": "^2.3.4",
"pm2": "^6.0.14",
"sequelize": "^6.37.7",
"tmp": "^0.2.5"
2026-02-14 18:11:19 -05:00
},
"devDependencies": {
"jest": "^30.2.0"
2026-02-14 18:16:10 -05:00
},
"scripts": {
2026-02-17 17:38:06 -05:00
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
2026-02-17 17:38:06 -05:00
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"**/__tests__/**/*.js",
"**/?(*.)+(spec|test).js"
],
"verbose": true
}
}