forked from neoskop/ligscrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "@neoskop/ligscrib",
"version": "2.0.1",
"description": "Ligature icon font generator",
"keywords": [
"icon",
"icons",
"ligature",
"ligatures",
"font",
"fonts",
"generator",
"writer",
"converter"
],
"bin": {
"ligscrib": "./bin/ligscrib.js"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "[email protected]:neoskop/ligscrib.git",
"author": "Mark Wecke <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"publish-next": "npm run build && npm publish --tag next",
"publish-latest-only": "npm run build && npm publish",
"publish-latest": "npm run publish-latest-only && npm dist-tag add @neoskop/ligscrib@`jq '.version' package.json -r` next"
},
"devDependencies": {
"@types/fs-extra": "9.0.10",
"@types/glob": "7.1.3",
"@types/node": "14.14.37",
"@types/source-map-support": "0.5.3",
"@types/stream-buffers": "3.0.3",
"@types/yargs": "16.0.1",
"typescript": "4.2.4"
},
"dependencies": {
"@types/colors": "1.2.1",
"colors": "1.4.0",
"fs-extra": "9.1.0",
"glob": "7.1.6",
"glob-promise": "4.1.0",
"source-map-support": "0.5.19",
"stream-buffers": "3.0.2",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "9.1.1",
"tslib": "2.2.0",
"ttf2woff": "2.0.2",
"ttf2woff2": "4.0.2",
"yargs": "16.2.0"
}
}