forked from luin/readability
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 838 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 838 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
{
"name": "readability-js",
"version": "1.0.7",
"author": "Dumitru Cantea",
"description": "Turning any web page into a clean view.",
"homepage": "https://github.com/Ournet/readability-js",
"repository": {
"type": "git",
"url": "git://github.com/Ournet/readability-js.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec -t 4000",
"lint": "eslint ."
},
"main": "./src/readability",
"licenses": [
{
"type": "Apache License 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"cheerio": "^0.19.0",
"encoding": "~0.1.7",
"request": "~2.40.0"
},
"engines": [
"node >=0.8.0"
],
"keywords": [
"readability"
],
"devDependencies": {
"mocha": "~1.8.2",
"nock": "^7.7.3",
"should": "^7.1.0"
}
}