This repository was archived by the owner on Apr 22, 2021. It is now read-only.
forked from foliojs/fontkit
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
70
{
"name": "@react-pdf/fontkit",
"version": "1.15.0",
"description": "An advanced font engine for Node and the browser",
"keywords": [
"opentype",
"font",
"typography",
"subset",
"emoji",
"glyph",
"layout"
],
"scripts": {
"test": "mocha",
"prepublish": "make",
"watch": "rimraf ./dist && rollup -c -w",
"coverage": "BABEL_ENV=cover nyc mocha"
},
"main": "dist/fontkit.cjs.js",
"module": "dist/fontkit.es.js",
"browser": {
"./dist/fontkit.es.js": "./dist/fontkit.browser.es.js",
"./dist/fontkit.cjs.js": "./dist/fontkit.browser.cjs.js"
},
"files": [
"dist"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"dependencies": {
"@react-pdf/unicode-properties": "2.3.0",
"brotli": "^1.2.0",
"clone": "^1.0.1",
"deep-equal": "^1.0.0",
"dfa": "^1.0.0",
"restructure": "^0.5.3",
"tiny-inflate": "^1.0.2",
"unicode-trie": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"codepoints": "^1.2.0",
"concat-stream": "^1.4.6",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"iconv-lite": "^0.4.13",
"mocha": "^2.0.1",
"nyc": "^10.3.2",
"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-json": "^2.1.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^3.0.0"
}
}