command-parser/package.json

30 lines
724 B
JSON
Raw Normal View History

2022-07-28 21:06:03 +02:00
{
2022-07-29 13:17:01 +02:00
"name": "commandparser",
2023-02-12 17:09:34 +01:00
"version": "1.1.2",
2022-07-28 21:06:03 +02:00
"description": "Parser meant to parse commands and their options for discord bots",
2022-07-29 17:48:03 +02:00
"main": "build/index.js",
2022-07-28 21:06:03 +02:00
"author": "Navy.gif",
"license": "MIT",
"private": false,
"devDependencies": {
2023-02-12 16:20:05 +01:00
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
2022-07-29 13:17:01 +02:00
"@types/node": "^18.6.2",
2022-07-28 21:06:03 +02:00
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
2023-02-12 16:20:05 +01:00
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.2",
2022-07-28 21:06:03 +02:00
"typescript": "^4.7.4"
2022-07-29 17:48:03 +02:00
},
"files": [
"build"
],
"scripts": {
2023-02-12 15:20:08 +01:00
"build": "tsc",
2023-02-12 17:08:52 +01:00
"test": "tsc && jest",
2023-02-12 16:20:05 +01:00
"release": "tsc && yarn publish",
"lint": "eslint --fix"
2022-07-28 21:06:03 +02:00
}
}