-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
81 lines (81 loc) · 1.68 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
72
73
74
75
76
77
78
79
80
81
{
"name": "chat-linker",
"version": "1.0.0",
"main": "dist/app.js",
"description": "It makes a bridge between different IM-networks via chat-bot",
"license": "MIT",
"repository": "jt3k/chat-linker",
"author": {
"name": "Andrey Gurtovoy",
"email": "[email protected]",
"url": "github.com/jt3k"
},
"engines": {
"node": ">=4"
},
"scripts": {
"xo": "xo",
"flow": "flow .",
"test": "xo && flow .",
"build": "babel src/ -d dist/",
"prod": "cross-env NODE_ENV=prod node dist/app.js",
"dev": "cross-env NODE_ENV=dev node --inspect dist/app.js",
"precommit": "npm test && npm run build",
"prepush": "npm run precommit",
"postreceive": "./crypter.js dec"
},
"keywords": [
"jabber",
"telegram",
"chats",
"groupchats",
"bridge"
],
"dependencies": {
"cross-env": "^5.0.0",
"node-xmpp-client": "^3.1.3",
"telegraf": "^3.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint-plugin-flowtype": "^2.39.1",
"babel-eslint": "^8.0.1",
"flow-bin": "^0.57.3",
"husky": "^0.11.9",
"xo": "^0.17.1"
},
"xo": {
"parser": "babel-eslint",
"esnext": true,
"envs": [
"node"
],
"plugins": [
"flowtype"
],
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
],
"import/no-unresolved": [
0
],
"import/no-unassigned-import": [
0
],
"linebreak-style": 0,
"object-curly-spacing": [
2,
"always"
],
"no-undef": 0
},
"space": true,
"semicolon": true
}
}