-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "social-stream-monitor",
"version": "1.0.0",
"description": "It is a tool to visualize in real time the results of a search by a specific word of Twitter.",
"main": "app.js",
"scripts": {
"start": "pm2 start app.js --watch",
"stop": "pm2 stop app.js --watch",
"restart": "pm2 restart app.js --watch",
"test": "mocha -R spec tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megumiteam/social-stream-monitor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/megumiteam/social-stream-monitor/issues"
},
"homepage": "https://github.com/megumiteam/social-stream-monitor#readme",
"dependencies": {
"async": "^2.0.0-rc.2",
"aws-sdk": "^2.3.0",
"pm2": "^1.1.1",
"socket.io": "^1.4.5",
"url": "^0.11.0",
"ntwitter": "^0.5.0"
},
"devDependencies": {
"mocha": "^2.4.5",
"should": "^8.3.0",
"socket.io-client": "^1.4.5"
}
}