-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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": "language-data",
"version": "0.1.3",
"description": "Linguistic data useful for font testing and development.",
"author": "Adam Jagosz <[email protected]> (http://adamjagosz.com/)",
"homepage": "https://github.com/hyvyys/language-data#readme",
"repository": {
"type": "git",
"url": "https://github.com/hyvyys/language-data.git"
},
"bugs": "https://github.com/hyvyys/language-data/issues",
"main": "dist/index.js",
"module": "dist/index.module.js",
"files": [
"dist/"
],
"scripts": {
"build": "node --icu-data-dir=node_modules/full-icu -r esm scripts/build.js",
"build-silent": "node --icu-data-dir=node_modules/full-icu -r esm scripts/build.js --silent",
"watch": "chokidar \"./src\" -c \"npm run build\"",
"watch-silent": "chokidar \"./src\" -c \"npm run build-silent\""
},
"keywords": [
"dataset",
"pangram",
"sample text",
"language",
"alphabet",
"character set",
"font",
"typeface",
"typography",
"testing"
],
"license": "MIT",
"devDependencies": {
"chokidar-cli": "^3.0.0",
"colors": "^1.4.0",
"esm": "^3.2.25",
"full-icu": "^1.3.0",
"grapheme-splitter": "^1.0.4",
"iso-15924": "^2.2.0",
"lang-ietf-opentype": "0.0.1",
"language-tags": "^1.0.5"
}
}