-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 982 Bytes
/
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
{
"scripts": {
"postinstall": "node ./bin/install.js",
"build": "babel source --out-dir .",
"prepublish": "npm run build"
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
]
},
"bin": {
"fitfont-generate": "./bin/generate.js"
},
"name": "fitfont",
"description": "This library allows you to easily display text with custom fonts.",
"version": "1.3.3",
"main": "fitfont.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregoiresage/fitfont.git"
},
"keywords": [
"fitbitdev"
],
"author": "Grégoire Sage",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregoiresage/fitfont/issues"
},
"homepage": "https://github.com/gregoiresage/fitfont#readme",
"dependencies": {
"python-shell": "^1.0.4",
"readline2": "^1.0.1"
}
}