-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
139 lines (139 loc) · 3.67 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "webfont",
"version": "11.3.0",
"description": "Generator of fonts from svg icons, svg icons to svg font, svg font to ttf, ttf to eot, ttf to woff, ttf to woff2",
"directories": {
"lib": "dist",
"source": "src"
},
"files": [
"dist",
"dist/src/index.d.ts",
"templates",
"!**/__tests__",
"!**/__mocks__",
"README.md"
],
"main": "dist/index.js",
"bin": "dist/cli.js",
"source": "src/index.ts",
"types": "dist/src/index.d.ts",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist/ temp/",
"demo": "node dist/cli.js './src/fixtures/svg-icons/*.svg' -d demo -t html --normalize --center-horizontally",
"lint": "eslint .",
"postbuild": "tsc --declaration --declarationDir dist --emitDeclarationOnly",
"prebuild": "npm run clean && npm run lint",
"predemo": "npm run build",
"prepublishOnly": "npm run build",
"prerelease": "npm run test",
"pretest": "npm run build",
"prettify": "npm run lint --fix",
"preversion": "npm run test",
"push-tags": "git push origin --tags",
"release": "standard-version",
"release-alpha": "npm run release -- --prerelease alpha",
"test": "jest src",
"testc": "npm test -- --coverage",
"test-debug": "npm test --detectOpenHandles --runInBand",
"testu": "npm test -- -u"
},
"dependencies": {
"cosmiconfig": "^5.2.0",
"deepmerge": "^4.2.2",
"globby": "^11.0.0",
"meow": "^9.0.0",
"nunjucks": "^3.2.3",
"p-limit": "^3.1.0",
"parse-json": "^5.2.0",
"resolve-from": "^5.0.0",
"svg2ttf": "^6.0.2",
"svgicons2svgfont": "^10.0.3",
"ttf2eot": "^2.0.0",
"ttf2woff": "^3.0.0",
"wawoff2": "^2.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/eslint-plugin": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "latest",
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-typescript": "latest",
"@types/jest": "26.0.24",
"@types/node": "15.14.9",
"@types/nunjucks": "latest",
"@types/rimraf": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-jest": "27.1.0",
"eslint": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-unicorn": "latest",
"husky": "latest",
"is-eot": "latest",
"is-svg": "latest",
"is-ttf": "latest",
"is-woff": "latest",
"is-woff2": "latest",
"jest": "27.1.0",
"lint-staged": "11.1.2",
"rimraf": "latest",
"rollup": "2.56.3",
"standard-version": "latest",
"ts-node": "latest",
"tslib": "latest",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itgalaxy/webfont.git"
},
"author": "itgalaxy <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Alexander Krasnoyarov",
"email": "[email protected]",
"url": "https://vk.com/sterling_archer"
},
{
"name": "Jimmy Andrade",
"email": "[email protected]",
"url": "https://github.com/jimmyandrade"
}
],
"bugs": {
"url": "https://github.com/itgalaxy/webfont/issues"
},
"homepage": "https://github.com/itgalaxy/webfont#readme",
"engines": {
"node": ">= 12.0.0"
},
"keywords": [
"cli",
"standalone",
"font",
"fonts",
"webfont",
"webfonts",
"svg",
"ttf",
"woff",
"woff2",
"otf",
"ttf2eot",
"ttf2woff",
"ttf2svg",
"svg2ttf",
"css",
"scss",
"builder",
"generator"
]
}