forked from crishernandezmaps/liqen-scrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "liqen-scraper",
"version": "2.2.0",
"description": "tool to collect news about environmental issues",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"test": "npm run lint && npm run test:jest-cov && npm run ci:coveralls",
"test:jest": "NODE_ENV=test jest",
"test:jest-cov": "jest --coverage",
"ci:coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src samples",
"build": "babel src/ -d lib/",
"prepublish": "npm run build",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommonActionForum/liqen-scraper.git"
},
"keywords": [
"scraper",
"news",
"media"
],
"contributors": [
"Carlos Saito <carlos@saito.style> (http://saito.style)",
"Cristian Hernandez <hi@crishernandez.co> (http://crishernandez.co)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CommonActionForum/liqen-scraper/issues"
},
"homepage": "https://github.com/CommonActionForum/liqen-scraper#readme",
"dependencies": {
"cheerio": "^0.22.0",
"date-fns": "^1.27.2",
"googleapis": "^16.1.0",
"lodash": "^4.17.4",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "^0.46.0",
"jest": "^20.0.4"
}
}