hubot-command-mapper
Version:
Helps with mapping tools and commands to Hubot.
61 lines (60 loc) • 1.81 kB
JSON
{
"name": "hubot-command-mapper",
"version": "12.0.1",
"description": "Helps with mapping tools and commands to Hubot.",
"main": "dist/index.mjs",
"type": "module",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"scripts": {
"test": "cross-env NODE_OPTIONS='--no-warnings=ExperimentalWarning' mocha -n=loader=ts-node/esm -n=es-module-specifier-resolution=node test/**/*.spec.*ts --exit",
"build": "del-cli dist && tsc",
"prepublishOnly": "npm test",
"postpublish": "git push origin --tags",
"publish-patch": "npm run build && npm test && npm version patch && npm publish",
"publish-minor": "npm run build && npm test && npm version minor && npm publish",
"publish-major": "npm run build && npm test && npm version major && npm publish",
"format": "prettier --config .prettierrc {test,src}/**/*.*ts --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KeesCBakker/hubot-command-mapper.git"
},
"keywords": [
"Hubot",
"command",
"mapper"
],
"author": "Kees C. Bakker",
"license": "MIT",
"bugs": {
"url": "https://github.com/KeesCBakker/hubot-command-mapper/issues"
},
"homepage": "https://github.com/KeesCBakker/hubot-command-mapper#readme",
"dependencies": {
"named-regexp-groups": "^1.0.6",
"remove-markdown": "^0.5.5"
},
"devDependencies": {
"@types/hubot": "^11.3.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"hubot": "^13",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"ts-node": "^10.9.2"
},
"files": [
"dist/**/*.*js",
"dist/**/*.d.*ts"
]
}