-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.16 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
{
"name": "font-size",
"version": "0.1.6",
"description": "font-size is a command-line utility to calculate the best font-size based on a multitude of factors.",
"main": "index.js",
"preferGlobal": true,
"bin": {
"font-size": "index.js"
},
"scripts": {
"test": "bin/test.sh",
"lint": "bin/lint.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsbites/font-size.git"
},
"keywords": [
"byte-sized javascript",
"byte-sized",
"bytesized.tv",
"cli",
"demos",
"distance",
"education",
"font-size",
"javascript",
"learning",
"podcast",
"readability",
"resolution",
"retina",
"screencast",
"tutorials",
"vidcast",
"videocast",
"videos",
"x-height"
],
"author": "Volkan Özçelik <me@volkan.io> (https://volkan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsbites/font-size/issues"
},
"homepage": "https://bytesized.tv/",
"dependencies": {
"chalk": "^2.0.1",
"commander": "^2.11.0"
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-jsbites": "^0.8.0",
"http-server": "^0.10.0"
}
}