forked from devgg/fonticon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "fonticon",
"version": "1.0.0",
"description": "Tool for creating favicons and images from [Font Awesome](http://fontawesome.io/) icons. The generated icon can be previewed live in the browser.",
"private": true,
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --display-modules",
"start:dev": "webpack-dev-server",
"build:prod": "webpack --display-modules --mode=production",
"pre-commit": "pip install pre-commit && pre-commit install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devgg/fonticon.git"
},
"keywords": [
"favicon",
"Font Awesome",
"icon",
"fonticon"
],
"author": "Florian Gauger",
"license": "MIT",
"bugs": {
"url": "https://github.com/devgg/fonticon/issues"
},
"homepage": "https://gauger.io/fonticon",
"devDependencies": {
"cloudflare-cli": "^3.2.5",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.42.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"blueimp-canvas-to-blob": "^3.14.0",
"file-saver": "^1.3.8",
"fuse.js": "^3.2.1",
"jquery": "^3.4.0",
"spectrum-colorpicker": "^1.8.0",
"tinysort": "^2.3.6"
}
}