This repository was archived by the owner on Apr 12, 2021. It is now read-only.
forked from foliojs/textkit
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 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
67
68
69
{
"name": "@react-pdf/textkit",
"version": "0.5.0",
"description": "An advanced text layout framework",
"main": "./index.js",
"scripts": {
"prebuild": "rimraf attributedString layout engines glyph indices rect renderers run utils block index.js",
"prepublish": "npm run build",
"build": "babel ./src --out-dir ./",
"build:watch": "babel ./src --out-dir ./ --watch",
"precommit": "lint-staged",
"test": "jest"
},
"files": [
"attributedString",
"engines",
"glyph",
"indices",
"layout",
"rect",
"renderers",
"run",
"block",
"utils",
"index.js"
],
"contributors": [
"Devon Govett <devongovett@gmail.com>",
"Diego Muracciole <diegomuracciole@gmail.com>"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"@react-pdf/unicode-properties": "2.3.0",
"hyphen": "^1.6.4",
"ramda": "^0.26.1"
},
"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.4.3",
"@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",
"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": "^24.7.1",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"rimraf": "^2.6.3"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}