-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.11 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
48
{
"name": "clean-html-js",
"version": "1.3.16",
"description": "extract reading material from a url",
"keywords": [
"readability",
"reader",
"reader-readability"
],
"main": "dist/clean-html.js",
"scripts": {
"test": "jest",
"prepare": "tsc && mv types/* dist",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/j-mendez/clean-html-js.git"
},
"dependencies": {
"buffer": "^5.2.1",
"events": "^3.0.0",
"path": "^0.12.7",
"readability-node": "^0.1.0",
"sanitize-html": "1.20.0",
"url": "^0.11.0",
"url-parse": "^1.4.4",
"xmldom-silent": "^0.1.19"
},
"author": "Jeffrey Mendez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/j-mendez/clean-html-js/issues"
},
"homepage": "https://github.com/j-mendez/clean-html-js#readme",
"devDependencies": {
"isomorphic-fetch": "^3.0.0",
"jest": "^26.5.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
}
}
}