UNPKG

3.69 kBJSONView Raw
1{
2 "name": "webfont",
3 "version": "11.0.0",
4 "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",
5 "directories": {
6 "lib": "dist",
7 "source": "src"
8 },
9 "files": [
10 "dist",
11 "dist/src/index.d.ts",
12 "templates",
13 "!**/__tests__",
14 "!**/__mocks__",
15 "README.md"
16 ],
17 "main": "dist/index.js",
18 "bin": "dist/cli.js",
19 "source": "src/index.ts",
20 "types": "dist/src/index.d.ts",
21 "typings": "dist/src/index.d.ts",
22 "scripts": {
23 "build": "rollup -c",
24 "clean": "rm -rf dist/ temp/",
25 "demo": "node dist/cli.js './src/fixtures/svg-icons/*.svg' -d demo -t html --normalize --center-horizontally",
26 "lint": "eslint .",
27 "postbuild": "tsc --declaration --declarationDir dist --emitDeclarationOnly",
28 "prebuild": "npm run clean && npm run lint",
29 "predemo": "npm run build",
30 "prerelease": "npm run test",
31 "pretest": "npm run build",
32 "prettify": "npm run lint --fix",
33 "preversion": "npm run test",
34 "push-tags": "git push origin --tags",
35 "release": "standard-version",
36 "release-alpha": "npm run release -- --prerelease alpha",
37 "test": "jest src",
38 "testc": "npm test -- --coverage",
39 "test-debug": "npm test --detectOpenHandles --runInBand",
40 "testu": "npm test -- -u"
41 },
42 "dependencies": {
43 "deepmerge": "latest",
44 "globby": "latest",
45 "meow": "9.x",
46 "nunjucks": "latest",
47 "p-limit": "latest",
48 "parse-json": "latest",
49 "resolve-from": "latest",
50 "svg2ttf": "latest",
51 "svgicons2svgfont": "latest",
52 "ttf2eot": "latest",
53 "ttf2woff": "latest",
54 "wawoff2": "^1.0.2",
55 "xml2js": "latest"
56 },
57 "devDependencies": {
58 "@babel/eslint-plugin": "latest",
59 "@babel/preset-env": "latest",
60 "@babel/preset-typescript": "latest",
61 "@rollup/plugin-commonjs": "latest",
62 "@rollup/plugin-typescript": "latest",
63 "@types/jest": "latest",
64 "@types/node": "latest",
65 "@types/nunjucks": "latest",
66 "@types/rimraf": "latest",
67 "@typescript-eslint/eslint-plugin": "latest",
68 "@typescript-eslint/parser": "latest",
69 "babel-jest": "latest",
70 "cosmiconfig": "^5.2.0",
71 "eslint": "latest",
72 "eslint-plugin-import": "latest",
73 "eslint-plugin-jest": "latest",
74 "eslint-plugin-node": "latest",
75 "eslint-plugin-promise": "latest",
76 "eslint-plugin-unicorn": "latest",
77 "husky": "latest",
78 "is-eot": "latest",
79 "is-svg": "latest",
80 "is-ttf": "latest",
81 "is-woff": "latest",
82 "is-woff2": "latest",
83 "jest": "latest",
84 "lint-staged": "latest",
85 "rimraf": "latest",
86 "rollup": "latest",
87 "standard-version": "latest",
88 "ts-node": "latest",
89 "typescript": "latest"
90 },
91 "repository": {
92 "type": "git",
93 "url": "git+https://github.com/itgalaxy/webfont.git"
94 },
95 "author": "itgalaxy <development@itgalaxy.company>",
96 "license": "MIT",
97 "contributors": [
98 {
99 "name": "Alexander Krasnoyarov",
100 "email": "alexander.krasnoyarov@itgalaxy.company",
101 "url": "https://vk.com/sterling_archer"
102 },
103 {
104 "name": "Jimmy Andrade",
105 "email": "webfont@jimmyandrade.com",
106 "url": "https://github.com/jimmyandrade"
107 }
108 ],
109 "bugs": {
110 "url": "https://github.com/itgalaxy/webfont/issues"
111 },
112 "homepage": "https://github.com/itgalaxy/webfont#readme",
113 "engines": {
114 "node": ">= 12.0.0"
115 },
116 "keywords": [
117 "cli",
118 "standalone",
119 "font",
120 "fonts",
121 "webfont",
122 "webfonts",
123 "svg",
124 "ttf",
125 "woff",
126 "woff2",
127 "otf",
128 "ttf2eot",
129 "ttf2woff",
130 "ttf2svg",
131 "svg2ttf",
132 "css",
133 "scss",
134 "builder",
135 "generator"
136 ]
137}