-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
62 lines (62 loc) · 1.14 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
{
"name": "matrix-puppet-imessage",
"version": "1.5.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "DEBUG=matrix-puppet:* node index.js",
"test": "echo \"no tests at this time\"; exit 1"
},
"keywords": [
"matrix",
"imessage"
],
"contributors": [
"Keyvan Fatehi",
"Andrew Johnson"
],
"license": "ISC",
"dependencies": {
"JSONStream": "^1.3.5",
"bluebird": "^3.5.4",
"chokidar": "^1.6.1",
"matrix-puppet-bridge": "matrix-hacks/matrix-puppet-bridge#186331f",
"moment": "^2.24.0",
"node-persist": "^2.0.7",
"queue": "^4.5.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": "^_"
}
]
}
}
}