-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "react-reader-view",
"version": "1.2.0",
"description": "React package that turns a Website into a Safari like Readability reader mode view",
"keywords": [
"readability",
"reader",
"react-readability",
"react-reader"
],
"main": "dist/reader.js",
"scripts": {
"test": "jest",
"prepare": "tsc && mv types/* dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/jeffreymendez1993/react-readability.git"
},
"dependencies": {
"clean-html-js": "^1.1.4"
},
"devDependencies": {
"@testing-library/react": "^11.0.4",
"@types/react": "^16.9.43",
"jest": "^26.5.2",
"jest-fetch-mock": "^3.0.3",
"react": "^16.0.0",
"react-dom": "^16.13.1",
"ts-jest": "^26.4.1",
"typescript": "^3.7.5",
"xhr-mock": "^2.5.1"
},
"author": "Jeffrey Mendez <jeffmendez19@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffreymendez1993/react-reader/issues"
},
"homepage": "https://github.com/jeffreymendez1993/react-reader#readme",
"jest": {
"preset": "ts-jest",
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
}
}
}