forked from Hopding/fontkit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "@pdf-lib/fontkit",
"version": "1.1.0",
"description": "An advanced font engine for Node and the browser",
"main": "dist/fontkit.umd.js",
"unpkg": "dist/fontkit.umd.min.js",
"module": "dist/fontkit.es.js",
"types": "fontkit.d.ts",
"scripts": {
"make": "node Makefile.js",
"clean": "node Makefile.js clean",
"test": "MODULE_TYPE=commonjs mocha",
"coverage": "cross-env BABEL_ENV=cover nyc mocha"
},
"dependencies": {
"pako": "^1.0.6"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"@pdf-lib/brotli": "^0.0.0",
"@pdf-lib/restructure": "^0.0.1",
"@pdf-lib/unicode-properties": "^0.0.1",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"babel-plugin-istanbul": "^4.1.3",
"base64-arraybuffer": "^0.1.5",
"buffer": "^5.6.0",
"clone": "^1.0.4",
"codepoints": "^1.2.0",
"concat-stream": "^1.6.2",
"deep-equal": "^1.0.0",
"dfa": "^1.2.0",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"iconv-lite": "^0.4.24",
"mocha": "^2.0.1",
"nyc": "^10.3.2",
"rollup": "^2.10.2",
"rollup-plugin-analyzer": "^3.2.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-visualizer": "^4.0.4",
"shelljs": "^0.8.3",
"tiny-inflate": "^1.0.2",
"unicode-trie": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/Hopding/fontkit.git"
},
"keywords": [
"opentype",
"font",
"typography",
"subset",
"emoji",
"glyph",
"layout"
],
"author": "Andrew Dillon <andrew.dillon.j@gmail.com>",
"contributors": [
"Devon Govett <devongovett@gmail.com> (http://badassjs.com/)"
],
"bugs": {
"url": "https://github.com/Hopding/fontkit/issues"
},
"license": "MIT",
"homepage": "https://github.com/Hopding/fontkit"
}