forked from mikecousins/react-pdf-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "react-pdf-js",
"version": "1.0.18",
"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",
"prepublish": "npm run lint && npm run clean && npm run build"
},
"keywords": [
"react",
"reactjs",
"pdf",
"pdfjs"
],
"author": "Mike Cousins <[email protected]> (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.294"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-runtime": "6.9.0",
"babel-plugin-typecheck": "3.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-runtime": "6.9.2",
"eslint": "2.12.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.8.1",
"eslint-plugin-react": "5.1.1",
"eslint-plugin-jsx-a11y": "1.4.2",
"react": "15.1.0",
"rifraf": "2.0.2",
"rimraf": "2.5.2",
"webpack": "1.13.1"
},
"npmName": "react-pdf-js",
"npmFileMap": [
{
"files": [
"dist/*.js",
"lib/*.js",
"src/*.js"
]
}
]
}