priyanshu-fca
Version:
A Facebook chat API
80 lines (79 loc) • 1.55 kB
JSON
{
"name": "priyanshu-fca",
"version": "3.0.1",
"description": "A Facebook chat API",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint **.js",
"prettier": "prettier utils.js src/* --write"
},
"repository": {
"type": "git",
"url": "git://github.com/priyanshufsdev/priyanshu-fca.git"
},
"keywords": [
"facebook",
"chat",
"api",
"fca",
"priyanshu-fca",
"fb-chat-api"
],
"bugs": {
"url": "https://github.com/priyanshufsdev/priyanshu-fca/issues"
},
"author": "Priyanshu Rajput",
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"bluebird": "^2.11.0",
"cheerio": "^0.22.0",
"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": {
"es6": true,
"es2017": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"no-unused-vars": [
1,
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"no-empty": [
"error",
{
"allowEmptyCatch": true
}
]
}
}
}