forked from mikecousins/react-pdf-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 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
{
"name": "react-pdf-js",
"version": "1.0.29",
"description": "A React component to wrap PDF.js",
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mikecousins/react-pdf-js"
},
"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-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 lint && npm run clean && npm run build"
},
"keywords": [
"react",
"reactjs",
"pdf",
"pdfjs"
],
"author": "Mike Cousins <mike@mikecousins.com> (http://github.com/mikecousins)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikecousins/react-pdf-js/issues"
},
"homepage": "https://github.com/mikecousins/react-pdf-js",
"dependencies": {
"pdfjs-dist": "1.5.496",
"react": "15.3.2"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.16.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-runtime": "6.15.0",
"babel-plugin-typecheck": "3.9.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-runtime": "6.11.6",
"eslint": "3.6.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-react": "6.3.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"rifraf": "2.0.2",
"rimraf": "2.5.4",
"webpack": "1.13.2"
},
"npmName": "react-pdf-js",
"npmFileMap": [
{
"files": [
"dist/*.js",
"lib/*.js",
"src/*.js"
]
}
]
}