-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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": "make-glyphs",
"version": "0.5.1",
"description": "Tools for working with .glyphs font files.",
"license": "GPL-3.0",
"repository": "delucis/make-glyphs",
"bugs": {
"url": "https://github.com/delucis/make-glyphs/issues"
},
"homepage": "https://github.com/delucis/make-glyphs#readme",
"author": {
"name": "Chris Swithinbank",
"email": "[email protected]",
"url": "http://chrisswithinbank.net/"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"bin/*",
"lib/*",
"index.js"
],
"bin": {
"make-glyphs": "bin/cli.js"
},
"keywords": [
"glyphs",
"fonts",
"file-format",
"make",
"build",
"tool"
],
"dependencies": {
"joi": "^14.3.1",
"load-nextstep-plist": "^1.0.2",
"lodash.clonedeep": "^4.5.0",
"minimist": "^1.2.6",
"readable-glyph-names": "^1.0.0",
"unicode-blocks": "^2.0.4",
"write-glyphs-file": "^1.0.1"
},
"devDependencies": {
"ava": "^2.1.0",
"coveralls": "^3.0.4",
"nyc": "^14.1.1",
"tempy": "^0.3.0"
}
}