-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
61 lines (61 loc) · 1.2 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
{
"name": "matrix-puppet-groupme",
"version": "1.1.0",
"description": "facilitates writing a certain kind of matrix bridge",
"main": "index.js",
"scripts": {
"start": "DEBUG=matrix-puppet:* node index.js",
"test": "echo \"no tests at this time\"; exit 1"
},
"keywords": [
"matrix",
"groupme"
],
"author": "Keyvan Fatehi",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/kfatehi/matrix-puppet-groupme.git"
},
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.4.6",
"debug": "^2.6.0",
"matrix-puppet-bridge": "github:matrix-hacks/matrix-puppet-bridge#af5c715",
"ws": "^1.1.1"
},
"devDependencies": {
"eslint": "^3.12.2"
},
"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": "^_"
}
]
}
}
}