forked from diegomura/react-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.18 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@react-pdf/renderer",
"version": "1.6.6",
"license": "MIT",
"author": "Diego Muracciole <diegomuracciole@gmail.com>",
"homepage": "https://github.com/diegomura/react-pdf#readme",
"repository": "git@github.com:diegomura/react-pdf.git",
"main": "dist/react-pdf.cjs.js",
"module": "dist/react-pdf.es.js",
"browser": {
"./dist/react-pdf.es.js": "./dist/react-pdf.browser.es.js",
"./dist/react-pdf.cjs.js": "./dist/react-pdf.browser.cjs.js"
},
"typings": "index.d.ts",
"scripts": {
"build": "rimraf ./dist && rollup -c",
"watch": "rimraf ./dist && rollup -c -w",
"example": "babel-node ./examples/index.js",
"prepublish": "npm run build",
"precommit": "git add . && lint-staged",
"lint": "eslint src",
"test": "jest",
"test:size": "bundlesize"
},
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-pdf/fontkit": "^1.13.0",
"@react-pdf/pdfkit": "^1.2.0",
"@react-pdf/png-js": "^1.0.0",
"@react-pdf/textkit": "^0.3.7",
"blob-stream": "^0.1.3",
"cross-fetch": "^3.0.4",
"emoji-regex": "^8.0.0",
"is-url": "^1.2.4",
"media-engine": "^1.0.3",
"page-wrapping": "^1.1.0",
"ramda": "^0.26.1",
"react-reconciler": "^0.21.0",
"scheduler": "^0.15.0",
"yoga-layout-prebuilt": "^1.9.3"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"bundlesize": "^0.17.1",
"chalk": "^2.4.2",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^24.5.0",
"jest-fetch-mock": "^2.1.1",
"lint-staged": "^8.1.4",
"lodash.times": "^4.3.2",
"mock-fs": "^4.8.0",
"mockdate": "^2.0.2",
"prettier": "^1.16.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rimraf": "^2.6.3",
"rollup": "^1.2.3",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4"
},
"lint-staged": {
"*.js": [
"yarn run lint",
"prettier --write",
"git add"
]
},
"files": [
"dist",
"index.d.ts"
],
"bundlesize": [
{
"path": "./dist/react-pdf.cjs.min.js",
"maxSize": "17kB"
},
{
"path": "./dist/react-pdf.browser.cjs.min.js",
"maxSize": "17kB"
}
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/react-pdf",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}