generated from turt2live/matrix-bot-sdk-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "matrix-zammad",
"version": "0.0.1",
"author": "Half-Shot <[email protected]>",
"license": "Apache-2.0",
"description": "A bot to interface Zammad with Matrix",
"repository": {
"type": "git",
"url": "git+https://github.com/Half-Shot/matrix-zammad.git"
},
"bugs": {
"url": "https://github.com/Half-Shot/matrix-zammad/issues"
},
"homepage": "https://github.com/Half-Shot/matrix-zammad#readme",
"keywords": [
"matrix",
"bot",
"zammad"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start:dev": "npm run build && node lib/index.js",
"start": "NODE_ENV=production node lib/index.js"
},
"dependencies": {
"config": "^3.2.4",
"escape-html": "^1.0.3",
"js-yaml": "^3.13.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8"
},
"devDependencies": {
"@types/node": "^10.17.5",
"@types/request-promise-native": "^1.0.17",
"matrix-bot-sdk": "^0.4.0-beta.19",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}