forked from paulyoung/fontello-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 KB
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
{
"name": "fontello",
"author": "ryantsangai@gmail.com",
"description": "Another Command line interface for Fontello.",
"url": "https://github.com/ryantsangai/fontello-cli",
"keywords": [
"cli",
"fontello",
"font",
"icon"
],
"version": "0.5.0",
"bin": {
"fontello": "./bin/fontello"
},
"main": "./lib/fontello",
"engines": {
"node": ">=0.10.x"
},
"dependencies": {
"colors": "0.6.1",
"open": "0.0.4",
"commander": "2.0.0",
"needle": "0.5.8",
"mkdirp": "0.3.5",
"unzip": "0.1.8"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1"
},
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib",
"test:open": "node ./src/cli.js open --config ./test/config.json --session ./test/.fontello-session",
"test:install": "node ./src/cli.js install --config ./test/config.json --css ./test/css --font ./test/font --session ./test/.fontello-session"
},
"repository": {
"type": "git",
"url": "https://github.com/ryantsangai/fontello-cli.git"
}
}