Files
handler/package.json
2022-03-15 15:12:58 -05:00

46 lines
1.1 KiB
JSON

{
"name": "sern-handler",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"release": "standard-version && git push --follow-tags",
"test": "jest --coverage --verbose",
"commit": "cz",
"docs": "typedoc src/index.ts --out docs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"discord.js": "^14.0.0-dev.1647259751.2297c2b",
"eslint": "^8.8.0",
"prettier": "^2.5.1",
"rxjs": "^7.5.5",
"ts-results": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"babel-jest": "^27.5.1",
"cz-conventional-changelog": "^3.0.1",
"jest": "^27.5.1",
"standard-version": "^9.3.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}