-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "hubot-command-mapper",
"version": "11.1.0",
"description": "Helps with mapping tools and commands to Hubot.",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"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"
},
"peerDependencies": {
"hubot": "^11"
},
"devDependencies": {
"@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",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"ts-node": "^10.9.2"
},
"files": [
"dist/**/*.*js",
"dist/**/*.d.*ts"
]
}