-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "symbols4sketch",
"version": "1.1.4",
"private": false,
"homepage": "https://github.com/sjy/symbols-for-sketch",
"repository": {
"type": "git",
"url": "git://github.com/sjy/symbols-for-sketch.git"
},
"bin": {
"s4s": "./bin.js"
},
"files": [
"templates",
"variants",
"util",
"bin.js",
"gulpfile.js",
"sketches"
],
"description": "A cli tool helping convert sketch to icon fonts",
"scripts": {
"start": "gulp watch",
"symbols": "gulp symbols",
"lint": "eslint .",
"installtool": "curl -L https://raw.githubusercontent.com/cognitom/gulp-sketch/master/install-sketchtool.sh | sudo sh"
},
"keywords": [
"symbol font",
"icon font",
"sketch",
"template"
],
"engines": {
"node": ">=4"
},
"author": "sjy",
"license": "MIT",
"dependencies": {
"browser-sync": "^2.18.2",
"commander": "^2.18.0",
"gulp": "^3.9.1",
"gulp-consolidate": "^0.2.0",
"gulp-iconfont": "^8.0.1",
"gulp-inline-fonts": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sketch": "^1.0.3",
"lodash": "^4.17.2"
},
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}