forked from tancredi/fantasticon
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@twbs/fantasticon",
"version": "0.0.0",
"description": "Icon font generation tool",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/fantasticon.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"icons",
"fonts",
"iconfonts",
"svg",
"vector"
],
"author": "Tancredi Trugenberger",
"bugs": {
"url": "https://github.com/twbs/fantasticon/issues"
},
"homepage": "https://github.com/twbs/fantasticon#readme",
"main": "lib/index.js",
"bin": {
"fantasticon": "bin/fantasticon"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc --project ./tsconfig.json",
"watch": "npm run build -- --watch",
"typecheck": "tsc --noEmit --project tsconfig.test.json --noEmit",
"lint": "prettier --check .",
"fix": "prettier --write ."
},
"files": [
"bin/fantasticon",
"lib/**/*.{js,ts,map}",
"!lib/**/{__mocks__,__tests__}/",
"templates/*.hbs"
],
"prepublish": "build",
"dependencies": {
"case": "^1.6.3",
"commander": "^11.1.0",
"figures": "^3.2.0",
"glob": "^7.2.3",
"handlebars": "^4.7.8",
"picocolors": "^1.0.0",
"slugify": "^1.6.6",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"ttf2eot": "^3.1.0",
"ttf2woff": "^3.0.0",
"ttf2woff2": "^5.0.0"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/svg2ttf": "^5.0.3",
"@types/svgicons2svgfont": "^10.0.5",
"@types/ttf2eot": "^2.0.2",
"@types/ttf2woff": "^2.0.4",
"@types/ttf2woff2": "^2.0.2",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=16"
}
}