-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "liqen-scrapper",
"version": "2.0.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:src",
"test:src": "NODE_ENV=test mocha --require babel-register test/**.spec.js",
"lint": "eslint src samples",
"build": "babel src/ -d lib/",
"prepublish": "npm run build",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crishernandezmaps/liqen-scrapper.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/crishernandezmaps/liqen-scrapper/issues"
},
"homepage": "https://github.com/crishernandezmaps/liqen-scrapper#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",
"chai": "^3.5.0",
"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",
"mocha": "^3.4.2"
}
}