forked from erikras/react-pdfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@srssoft/react-pdfjs",
"version": "2.0.0",
"description": "A React component to wrap PDF.js",
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/srssoft/react-pdfjs"
},
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-pdfjs.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/react-pdfjs.min.js --config webpack.config.production.js",
"clean": "rimraf dist lib",
"lint": "eslint src",
"prepare": "npm run lint && npm run clean && npm run build"
},
"keywords": [
"react",
"reactjs",
"pdf",
"pdfjs"
],
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/srssoft/react-pdfjs/issues"
},
"homepage": "https://github.com/srssoft/react-pdfjs",
"dependencies": {
"pdfjs-dist": "^1.10.95",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-typecheck": "^3.9.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.18.0",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-import": "^2.1.0",
"react": "^15.0.0",
"rifraf": "^2.0.2",
"rimraf": "^2.4.3",
"webpack": "^3.8.1"
},
"npmName": "@srssoft/react-pdfjs",
"npmFileMap": [
{
"files": [
"dist/*.js",
"lib/*.js",
"src/*.js"
]
}
]
}