-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.29 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
{
"name": "matrix-puppet-mud",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "DEBUG=*matrix-puppet:* node index.js",
"test": "echo \"no tests at this time\"; exit 1"
},
"keywords": [
"matrix",
"mud"
],
"contributors": [
"Chris Newton"
],
"license": "ISC",
"dependencies": {
"bluebird": "^3.4.6",
"concat-stream": "^1.6.0",
"debug": "^2.6.0",
"matrix-appservice-bridge": "^1.4.0a",
"matrix-js-sdk": "^0.7.8",
"mime-types": "^2.1.14",
"needle": "^1.4.5",
"read": "^1.0.7",
"tempfile": "^1.1.1",
"tmp": "^0.0.31"
},
"devDependencies": {
"eslint": "^6.8.0",
"jsdoc": "^3.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redshodan/matrix-puppet-mud.git"
},
"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": "^_"
}
]
}
}
}