-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
71 lines (71 loc) · 1.45 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": "fb-chat-api-temp",
"version": "1.0.4",
"description": "A Facebook chat API that doesn't rely on XMPP",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint **.js",
"prettier": "prettier utils.js src/* --write"
},
"repository": {
"type": "git",
"url": "https://github.com/ntkhang03/fb-chat-api-temp.git"
},
"keywords": [
"facebook",
"chat",
"api",
"fca",
"fb-chat-api",
"fb-chat-api-temp"
],
"bugs": {
"url": "https://github.com/ntkhang03/fb-chat-api-temp/issues"
},
"author": "Avery, David, Maude, Benjamin, UIRI, NTKhang (rebuild)",
"license": "MIT",
"dependencies": {
"https-proxy-agent": "^4.0.0",
"mqtt": "^3.0.0",
"npmlog": "^1.2.0",
"request": "^2.53.0",
"websocket-stream": "^5.5.0"
},
"engines": {
"node": ">=10.x"
},
"devDependencies": {
"eslint": "^7.5.0",
"mocha": "^7.0.1",
"prettier": "^1.11.1"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13
},
"rules": {
"no-prototype-builtins": 0,
"no-unused-vars": 1,
"comma-dangle": 1,
"no-redeclare": 0,
"prefer-const": 1,
"no-useless-escape": 0,
"no-mixed-spaces-and-tabs": 0,
"semi": 1,
"no-useless-catch": 0,
"no-empty": 0,
"use-isnan": 0,
"no-extra-semi": 1,
"no-async-promise-executor": 0,
"no-unreachable": 1,
"valid-typeof": 0,
"no-case-declarations": 0
}
}
}