wrappers/package.json

36 lines
866 B
JSON
Raw Normal View History

2023-04-12 13:23:41 +02:00
{
"name": "@navy.gif/wrappers",
"version": "1.0.0",
"description": "Various wrapper classes I use in my projects",
"main": "index.js",
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
"author": "Navy.gif",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"test": "tsc && jest",
"release": "tsc && yarn publish",
"lint": "eslint --fix"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/mysql": "^2.15.21",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"typescript": "^5.0.3"
},
"dependencies": {
"amqp-connection-manager": "^4.1.12",
"amqplib": "^0.10.3",
"mongodb": "^5.2.0",
"mysql": "^2.18.1"
}
}