-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "spottingbot",
"version": "1.0.12",
"description": "Analyzing profile on Twitter for detect behavior of spamming bot",
"homepage": "https://github.com/AppCivico/spottingbot#readme",
"main": "source/analyze.js",
"scripts": {
"start": "node source/cli.js",
"pretest": "eslint --ignore-path .gitignore .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Valentin GUILLOT",
"email": "[email protected]",
"url": "https://github.com/AppCivico/spottingbo/issues",
"license": "GPL-3.0",
"bin": {
"spottingbot": "source/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AppCivico/spottingbot.git"
},
"keywords": [
"cli-app",
"cli",
"development",
"dev",
"build",
"tool",
"backend",
"math",
"bot",
"bots",
"twitter"
],
"dependencies": {
"async": "^2.6.1",
"multilang-sentiment": "^1.1.6",
"request": "^2.88.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"babel-eslint": "^10.0.0",
"eslint": "^5.6.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-promise": "^4.0.1"
}
}