-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
56 lines (56 loc) · 1.27 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
56
{
"name": "hubot-matteruser",
"version": "5.4.6",
"author": {
"name": "Andy Lo-A-Foe",
"url": "https://github.com/loafoe"
},
"contributors": [],
"description": "Mattermost Adapter",
"keywords": [
"hubot",
"adapter",
"mattermost",
"chat"
],
"license": "MIT",
"module": "./src/matteruser.js",
"main": "dist/matteruser.js",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"lint": "yarn lint:js",
"lint:fix": "yarn lint:js:fix",
"lint:js": "eslint 'src/**/*.js'",
"lint:js:fix": "yarn lint:js --fix",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"prepublishOnly": "npm run build:prod"
},
"dependencies": {
"json-schema": "^0.4.0",
"mattermost-client": "^6.5.0"
},
"peerDependencies": {
"hubot": ">=3.0.1"
},
"devDependencies": {
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"hubot": "^3.3.2",
"jest": "^29.1.2",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"yarn": "^1.22.10"
},
"repository": {
"type": "git",
"url": "https://github.com/loafoe/hubot-matteruser.git"
},
"bugs": {
"url": "https://github.com/loafoe/hubot-matteruser/issues",
"email": "[email protected]"
}
}