-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 791 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 791 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
{
"name": "readability-wrapper",
"version": "0.1.0",
"description": "Command-line Wrapper for Mozilla Readability.js",
"keywords": [
"readability",
"terminal"
],
"homepage": "https://github.com/brynedwards/readability-wrapper",
"repository": {
"type": "git",
"url": "https://github.com/brynedwards/readability-wrapper"
},
"main": "index.js",
"license": "Unlicense",
"author": "Bryn Edwards <[email protected]> (http://github.com/brynedwards)",
"dependencies": {
"commander": "^2.15.1",
"jsdom": "^11.10.0",
"readability": "git://github.com/mozilla/readability.git#7a24801958b5d385dc554e91140d0457a1395610"
},
"bin": {
"readability": "./index.js"
},
"devDependencies": {},
"scripts": {
"lint": "eslint index.js"
}
}