-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "scrapper-news",
"version": "1.0.0",
"main": "start.js",
"scripts": {
"start": "DEBUG=* node src/main.js",
"scrapper": "node --use_strict build/main.js",
"test": "npm run lint && npm run unittest",
"unittest": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register test/**/**Test.js",
"lint": "./node_modules/.bin/eslint .",
"docker:build": "docker build -t garciadiazjaime/scrapper-news .",
"docker:run": "docker run -d -p 49194:3060 --link mongo -e='DB_URL=mongodb://mongo/news' --name=scrapper-news garciadiazjaime/scrapper-news",
"docker:push": "docker push garciadiazjaime/scrapper-news",
"docker:pull": "docker pull garciadiazjaime/scrapper-news",
"util:google-search": "DEBUG=* node ./src/google-search.js",
"util:analysis": "node src/analytics.js"
},
"repository": {},
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"convict": "^4.0.0",
"debug": "^4.1.0",
"express": "^4.15.3",
"natural": "^0.6.2",
"query-string": "^6.2.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"mocha": "^5.2.0",
"sinon": "^2.3.8"
},
"babel": {
"presets": [
"stage-3",
"latest"
]
}
}