forked from heremaps/harp-fontcatalog-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "@xyzmaps/harp-fontcatalog-generator",
"version": "0.2.0",
"description": "Scripts used to generate a font catalog for harp.gl",
"scripts": {
"pretest": "ts-node ./scripts/unicode-ranges-generator.ts",
"test": "ts-node ./scripts/harp-fontcatalog-generator.ts -i ./resources-dev/TestFonts.json -o ./test/resources && ts-mocha $EXTRA_MOCHA_ARGS ./test/*Test.ts",
"prepare": "tsc --sourceMap false",
"prepack": "ts-node ./scripts/unicode-ranges-generator.ts && chmod +x ./scripts/harp-fontcatalog-generator.js"
},
"bin": "./scripts/harp-fontcatalog-generator.js",
"repository": {
"type": "git",
"url": "https://github.com/xyzmaps/harp-fontcatalog-generator.git"
},
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0 AND OFL-1.1",
"engines": {
"node": ">=9.11.1",
"npm": ">=5.8.0",
"yarn": ">=1.11.1"
},
"dependencies": {
"fontkit": "^1.8.1",
"minimist": "^1.2.5",
"mkpath": "^1.0.0",
"msdf-bmfont-xml": "^2.5.4"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^10.0.1",
"@types/node": "^14.0.10",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
}
}