-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 852 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 852 Bytes
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": "ascrape",
"version": "0.2.0",
"author": "Dumitru Cantea",
"description": "Extracts article content from a web page.",
"homepage": "https://github.com/Mitica/ascrape-js",
"repository": {
"type": "git",
"url": "git://github.com/Mitica/ascrape-js.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec -t 4000",
"lint": "eslint ."
},
"main": "./lib/index.js",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"dependencies": {
"cheerio": "^0.22.0",
"encoding": "^0.1.12",
"request": "^2.79.0"
},
"engines": [
"node >= 4"
],
"keywords": [
"ascrape",
"article",
"article-content",
"readability"
],
"devDependencies": {
"mocha": "^3.2.0",
"nock": "^9.0.2",
"should": "^11.1.2"
}
}