forked from diegomura/react-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.52 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
114
115
116
117
{
"name": "@react-pdf/renderer",
"version": "1.0.0-alpha.14",
"license": "MIT",
"author": "Diego Muracciole <[email protected]>",
"homepage": "https://github.com/diegomura/react-pdf#readme",
"repository": "[email protected]: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"
},
"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 performance src",
"test": "jest --config .jestrc",
"test:size": "bundlesize"
},
"dependencies": {
"@react-pdf/fontkit": "^1.11.0",
"@react-pdf/pdfkit": "^1.2.0",
"@react-pdf/png-js": "^1.0.0",
"@react-pdf/script-itemizer": "^0.1.11",
"@react-pdf/textkit-core": "^0.1.19",
"@textkit/justification-engine": "^0.1.9",
"@textkit/line-fragment-generator": "^0.1.9",
"@textkit/linebreaker": "^0.1.9",
"@textkit/pdf-renderer": "^0.1.11",
"@textkit/text-decoration-engine": "^0.1.10",
"babel-runtime": "^6.26.0",
"blob-stream": "^0.1.3",
"buffer": "^5.1.0",
"emoji-regex": "^6.5.1",
"fbjs": "^0.8.4",
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.5",
"is-url": "^1.2.2",
"isomorphic-fetch": "^2.2.1",
"lodash.groupby": "^4.6.0",
"lodash.isfunction": "^3.0.8",
"lodash.isnil": "^4.0.0",
"lodash.merge": "^4.6.1",
"lodash.pick": "^4.4.0",
"lodash.topairsin": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"media-engine": "^1.0.3",
"react": "^16.4.1",
"react-reconciler": "^0.7.0",
"yoga-layout": "1.9.3"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.17.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.22.0",
"bundlesize": "^0.17.0",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.1.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.13.2",
"jest": "^20.0.4",
"lint-staged": "^3.4.2",
"mockdate": "^2.0.1",
"prettier": "^1.6.1",
"rimraf": "^2.6.1",
"rollup": "^0.52.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-bundle-size": "https://github.com/vimeo/rollup-plugin-bundle-size",
"rollup-plugin-ignore": "^1.0.3",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0"
},
"peerDependencies": {
"react": "^16.0.0"
},
"lint-staged": {
"*.js": [
"yarn run lint",
"prettier --write",
"git add"
]
},
"files": [
"dist"
],
"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"
}
}