-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
47
{
"name": "readabilitySAX",
"version": "1.6.1",
"description": "the readability script ported to a sax parser",
"author": "Felix Boehm <[email protected]>",
"keywords": [
"html",
"content extraction",
"readability",
"instapaper"
],
"main": "lib/",
"repository": {
"type": "git",
"url": "git://github.com/fb55/readabilitysax.git"
},
"dependencies": {
"entities": "^4.5.0",
"htmlparser2": "^9.0.0",
"minreq": "^0.2.3",
"readable-stream": "^4.4.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^2.8.3"
},
"bin": {
"readability": "bin/cli.js"
},
"scripts": {
"test": "node tests/test_output.js",
"lint": "npm run lint:es && npm run lint:prettier",
"lint:es": "eslint .",
"lint:prettier": "npm run prettier -- --check",
"format": "npm run format:es && npm run format:prettier",
"format:es": "npm run lint:es -- --fix",
"format:prettier": "npm run prettier -- --write",
"prettier": "prettier '**/*.{ts,md,json,yml}'"
},
"license": "BSD-like",
"prettier": {
"proseWrap": "always",
"tabWidth": 4
}
}