This repository was archived by the owner on Nov 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "@react-pdf/text-layout",
"version": "0.3.4",
"description": "React-pdf text layout engine",
"main": "dist/index.js",
"repository": "https://github.com/react-pdf/text-layout",
"author": "Diego Muracciole <diegomuracciole@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel ./src --out-dir ./dist",
"prepublish": "npm run build",
"test": "jest"
},
"files": [
"dist"
],
"dependencies": {
"@textkit/core": "0.1.12",
"@textkit/justification-engine": "^0.1.6",
"@textkit/line-fragment-generator": "^0.1.6",
"@textkit/linebreaker": "^0.1.6",
"@textkit/script-itemizer": "^0.1.6",
"@textkit/text-decoration-engine": "^0.1.7",
"@textkit/truncation-engine": "^0.1.6",
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.5"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-node6": "^11.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.14.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1"
},
"peerDependencies": {
"@react-pdf/pdfkit": "latest"
}
}