-
Notifications
You must be signed in to change notification settings - Fork 312
/
package.json
47 lines (47 loc) · 997 Bytes
/
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
{
"name": "node-readability",
"version": "3.0.0",
"author": "Zihua Li",
"description": "Turning any web page into a clean view.",
"homepage": "https://github.com/luin/node-readability",
"repository": {
"type": "git",
"url": "git://github.com/luin/node-readability.git"
},
"bin": {
"readability": "./src/cli.js"
},
"scripts": {
"test": "mocha -R spec"
},
"main": "./src/readability",
"licenses": [
{
"type": "Apache License 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"encoding": "~0.1.7",
"jsdom": "^9.12.0",
"minimist": "^1.2.0",
"request": "^2.81.0"
},
"engines": {
"node": ">= 2"
},
"keywords": [
"readability"
],
"devDependencies": {
"cz-conventional-changelog": "^1.1.5",
"mocha": "~1.8.2",
"nock": "~0.27.1",
"should": "~2.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}