-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 955 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
36
37
38
39
40
41
{
"name": "twitter-crawler",
"version": "1.0.4",
"description": "NodeJS Crawler for Twitter",
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"twitter",
"crawl",
"crawling",
"crawler",
"tweets"
],
"license": "Apache-2.0",
"author": "Ary Pablo Batista <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:ibm-silvergate/nodejs-twitter-crawler.git"
},
"scripts": {
"test": "npm run jshint && (npm run codecov || true)",
"jshint": "jshint --exclude ./node_modules/",
"codecov": "istanbul cover ./node_modules/mocha/bin/_mocha && codecov"
},
"dependencies": {
"bluebird": "^3.3.5",
"extend": "^3.0.0",
"twitter": "^1.2.5",
"underscore": "^1.8.3",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"mocha": "^2.4.5"
}
}