-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 833 Bytes
/
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
{
"name": "pdfmake-font-generator",
"version": "1.1.0",
"description": "Generates fonts to use in the pdfmake package",
"scripts": {
"test": "jest"
},
"keywords": [
"pdfmake",
"pdfmake fonts",
"font generator"
],
"author": "Insomniocode <[email protected]>",
"license": "MIT",
"bin": {
"pdfmakefg": "src/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Lugriz/pdfmake-font-generator.git"
},
"homepage": "https://github.com/Lugriz/pdfmake-font-generator",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Lugriz/pdfmake-font-generator/issues"
},
"devDependencies": {
"jest": "^24.9.0"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.js$"
}
}