-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
72
73
74
75
76
77
{
"name": "react-pdf-js-infinite",
"version": "1.2.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/McRipper/react-pdf-js-infinite"
},
"scripts": {
"start": "node server",
"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-pdf-js.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/react-pdf-js.min.js --config webpack.config.production.js",
"clean": "rimraf dist lib",
"lint": "eslint src --ext .js --ext .jsx",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react",
"reactjs",
"pdf",
"pdfjs"
],
"author": "Emanuele Barban (http://github.com/McRipper)",
"license": "MIT",
"bugs": {
"url": "https://github.com/McRipper/react-pdf-js-infinite/issues"
},
"homepage": "https://github.com/McRipper/react-pdf-js-infinite",
"peerDependencies": {
"react": "^15.5.0 || ~0.14.0",
"react-dom": "^15.5.0 || ~0.14.0"
},
"dependencies": {
"pdfjs-dist": "~1.8.0",
"prop-types": "~15.5.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-typecheck": "3.9.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "~6.24.1",
"babel-runtime": "6.23.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"express": "~4.15.3",
"ip": "~1.1.5",
"react": "~15.6.0",
"react-dom": "~15.6.0",
"rifraf": "2.0.3",
"rimraf": "2.6.1",
"webpack": "3.1.0"
},
"npmName": "react-pdf-js-infinite",
"npmFileMap": [
{
"files": [
"dist/*.js",
"lib/*.js",
"src/*.js"
]
}
]
}