forked from ansu5555/pdf-viewer-reactjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.33 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "pdf-viewer-reactjs",
"version": "3.0.0-beta.2",
"description": "Simple react PDF viewer component with controls based on PDF.js.",
"source": "src/index.js",
"main": "dist/pdf-viewer-reactjs.js",
"scripts": {
"watch": "jest --watch",
"test": "jest",
"lintJS": "node_modules/.bin/eslint --fix './*js' 'src/**/*.js' 'example/src/**/*.js'",
"lintCSS": "node_modules/.bin/stylelint --fix 'example/src/**/*.css'",
"lint": "npm run lintJS && npm run lintCSS",
"prebuild": "npm run lint && npm run test",
"build": "rollup -c",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ansu5555/pdf-viewer-reactjs.git"
},
"keywords": [
"pdf",
"document",
"pages",
"pdf viewer",
"pdf-viewer",
"rotate",
"rotate pdf",
"zoom",
"zoom pdf",
"react",
"reactjs",
"react-pdf",
"react-pdf-viewer"
],
"author": "ansu5555",
"license": "MIT",
"bugs": {
"url": "https://github.com/ansu5555/pdf-viewer-reactjs/issues"
},
"homepage": "https://github.com/ansu5555/pdf-viewer-reactjs#readme",
"peerDependencies": {
"bulma": ">=0.8.1",
"material-design-icons": ">=3.0.1",
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.13.9",
"@rollup/plugin-babel": "^5.3.0",
"babel-jest": "^26.6.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-wdio": "^7.0.0",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react-scripts": "^4.0.3",
"react-test-renderer": "^17.0.1",
"rollup": "^2.39.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^13.10.0",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"pdfjs-dist": "^2.6.347",
"prop-types": "^15.7.2"
}
}