-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "subset-font",
"version": "2.4.0",
"description": "Create a subset of a TTF/WOFF/WOFF2 font using the wasm build of harfbuzz/hb-subset",
"main": "index.js",
"dependencies": {
"fontverter": "^2.0.0",
"harfbuzzjs": "^0.4.0",
"lodash": "^4.17.21",
"p-limit": "^3.1.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^5.0.0",
"fontkit": "^1.8.1",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"offline-github-changelog": "^2.0.0",
"prettier": "~2.2.0",
"unexpected": "^12.0.0"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papandreou/subset-font.git"
},
"keywords": [
"font",
"subset",
"harfbuzz",
"hb-subset",
"fonttools",
"truetype",
"TTF",
"WOFF",
"WOFF2",
"wasm"
],
"author": "Andreas Lind <andreaslindpetersen@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/papandreou/subset-font/issues"
},
"homepage": "https://github.com/papandreou/subset-font#readme",
"files": [
"index.js",
"*.md"
]
}