-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
71 lines (71 loc) · 1.42 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "matrix-puppet-bridge",
"version": "1.16.2",
"description": "facilitates writing a certain kind of matrix bridge",
"main": "index.js",
"scripts": {
"test": "echo \"no tests at this time\"; exit 1",
"gendoc": "jsdoc -r src -P package.json -R README.md -d docs"
},
"keywords": [
"matrix"
],
"contributors": [
"Keyvan Fatehi",
"Andrew Johnson"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/matrix-hacks/matrix-puppet-bridge.git"
},
"dependencies": {
"bluebird": "^3.7.2",
"concat-stream": "^2.0.0",
"debug": "^4.1.1",
"fluent-ffmpeg": "^2.1.2",
"image-size": "^0.8.3",
"matrix-appservice-bridge": "^1.12.2",
"matrix-js-sdk": "^5.2.0",
"mime-types": "^2.1.27",
"needle": "^2.4.1",
"read": "^1.0.7",
"tempfile": "^3.0.0",
"tmp": "^0.2.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"jsdoc": "^3.6.4"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"no-console": 0,
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
}
}