-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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": "spottingbot",
"version": "1.0.12",
"description": "Analyzing profile on Twitter for detect behavior of spamming bot",
"homepage": "https://github.com/AppCivico/spottingbot#readme",
"scripts": {
"start": "npx babel src -d build; node build/index.js",
"dev": "nodemon src/index.js --exec babel-node",
"lint": "eslint . --ext .js",
"cli": "babel-node src/cli.js",
"test": "npm run lint && npm run test:integration",
"test:integration": "mocha ./test/**/*.spec.js --require @babel/register",
"api:build": "docker-compose up -d --build api",
"api:log": "docker logs pegabot-api -f"
},
"author": "Valentin GUILLOT",
"email": "[email protected]",
"url": "https://github.com/AppCivico/spottingbot/issues",
"license": "GPL-3.0",
"bin": {
"spottingbot": "src/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AppCivico/spottingbot.git"
},
"keywords": [
"bot",
"bots",
"twitter"
],
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"async": "^3.2.0",
"body-parser": "^1.18.2",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"md5-hex": "^3.0.1",
"memory-cache": "^0.2.0",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"redis": "^3.0.2",
"sequelize": "^6.3.3",
"sequelize-cli": "^6.2.0",
"sinon": "^9.0.2",
"superagent": "^6.1.0",
"twitter-lite": "^0.11.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.2",
"multilang-sentiment": "^1.2.0",
"nodemon": "^2.0.3",
"supertest": "^4.0.2"
}
}