forked from itgalaxy/webfont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 3.96 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "webfont",
"version": "9.0.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",
"license": "MIT",
"author": "itgalaxy <development@itgalaxy.company>",
"contributors": [
{
"name": "Alexander Krasnoyarov",
"email": "alexander.krasnoyarov@itgalaxy.company",
"url": "https://vk.com/sterling_archer"
}
],
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/webfont.git"
},
"homepage": "https://github.com/itgalaxy/webfont",
"bugs": "https://github.com/itgalaxy/webfonty/issues",
"keywords": [
"cli",
"standalone",
"font",
"fonts",
"webfont",
"webfonts",
"svg",
"ttf",
"woff",
"woff2",
"otf",
"ttf",
"woff",
"eot",
"svg",
"ttf2eot",
"ttf2woff",
"ttf2svg",
"svg2ttf",
"css",
"scss",
"builder",
"generator"
],
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"dist",
"templates",
"!**/__tests__"
],
"dependencies": {
"cosmiconfig": "^5.2.0",
"deepmerge": "^4.2.2",
"globby": "^11.0.1",
"meow": "^7.1.1",
"nunjucks": "^3.2.2",
"p-limit": "^3.0.2",
"resolve-from": "^5.0.0",
"snyk": "^1.316.1",
"svg2ttf": "^5.0.0",
"svgicons2svgfont": "^9.0.3",
"ttf2eot": "^2.0.0",
"ttf2woff": "^2.0.0",
"wawoff2": "^1.0.2",
"xml2js": "^0.4.17"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"babel-eslint": "10.1.0",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"eslint": "7.14.0",
"eslint-plugin-ava": "11.0.0",
"eslint-plugin-html": "6.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-itgalaxy": "128.0.0",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-markdown": "1.0.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-unicorn": "21.0.0",
"esm": "^3.2.25",
"husky": "^4.3.0",
"is-eot": "^1.0.0",
"is-svg": "^4.1.0",
"is-ttf": "^0.2.0",
"is-woff": "^1.0.0",
"is-woff2": "^1.0.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.0.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"remark-cli": "^9.0.0",
"remark-preset-lint-itgalaxy": "^15.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0"
},
"scripts": {
"build": "babel src -d dist --ignore '**/__tests__/**'",
"demo": "npm run build && node dist/cli.js './src/__tests__/fixtures/svg-icons/*.svg' -d demo -t html --normalize --center-horizontally",
"fix": "npm-run-all -l prettify -p 'fix:**'",
"fix:js": "npm run lint:js -- --fix",
"lint": "npm-run-all -l --parallel lint:*",
"lint:js": "eslint . --report-unused-disable-directives --ignore-path .gitignore --ext 'js,.mjs,.jsx,.md'",
"lint:md": "remark . -i .gitignore -f -q",
"lint:prettier": "prettier --list-different '{**/*,*}.{js,mjs,jsx,json,md,yml,yaml}' --ignore-path .gitignore",
"prebuild": "rimraf dist",
"prepare": "npm run snyk-protect && npm run build",
"pretest": "npm run lint",
"prettify": "npm run lint:prettier -- --write",
"release": "standard-version",
"snyk-protect": "snyk protect",
"test": "npm run test:only -- --coverage",
"test:only": "nyc --clean jest src"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "8.9.0"
}
}
]
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-itgalaxy"
]
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"json"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"tempDirectory": "./coverage"
},
"engines": {
"node": ">= 10.13.0"
},
"snyk": true
}