-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
50 lines (50 loc) · 1.31 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
{
"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",
"start:dev": "webpack-dev-server",
"build:prod": "webpack --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": "^4.2.0",
"css-loader": "^7.0.0",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"blueimp-canvas-to-blob": "^3.29.0",
"file-saver": "^2.0.5",
"fuse.js": "^7.0.0",
"jquery": "^3.7.1",
"spectrum-colorpicker": "^1.8.1",
"tinysort": "^3.2.8"
}
}