-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "newspaperjs",
"version": "1.0.8",
"description": "News extraction and scraping. Article Parsing",
"main": "index.js",
"scripts": {
"test:coverage": "nyc npm run test",
"test": "mocha",
"lint:fix": "eslint --fix \"lib/**/*.js\" \"test/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/flickz/newspaperjs.git"
},
"keywords": [
"news",
"aggregator",
"web",
"scraper"
],
"author": "Oluwaseun Omoyajowo",
"license": "MIT",
"bugs": {
"url": "https://github.com/flickz/newspaperjs/issues"
},
"homepage": "https://github.com/flickz/newspaperjs#readme",
"dependencies": {
"cheerio": "^0.22.0",
"lodash": "^4.17.15",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"tld-extract": "^1.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.1.2",
"nyc": "^10.3.0"
}
}