command-parser/package.json
Navy.gif 2a3bb3f0d0
All checks were successful
continuous-integration/drone/push Build is passing
v1.1.2
2023-02-12 18:09:34 +02:00

30 lines
724 B
JSON

{
"name": "commandparser",
"version": "1.1.2",
"description": "Parser meant to parse commands and their options for discord bots",
"main": "build/index.js",
"author": "Navy.gif",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.2",
"typescript": "^4.7.4"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"test": "tsc && jest",
"release": "tsc && yarn publish",
"lint": "eslint --fix"
}
}