-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "postcss-webfont",
"version": "4.0.0",
"description": "PostCSS plugin to generate iconfonts from stylesheets.",
"main": "src/index.js",
"scripts": {
"lint": "eslint ./src --fix",
"clean": "rimraf .fontcache.json",
"test:exec": "ava --verbose",
"test": "run-s clean test:exec"
},
"keywords": [
"iconfont",
"webfont",
"postcss",
"postcss-plugin",
"tools"
],
"engines": {
"node": ">=9"
},
"author": "kkoudev",
"repository": {
"type": "git",
"url": "https://github.com/kkoudev/postcss-webfont"
},
"license": "MIT",
"dependencies": {
"crc": "^3.8.0",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"node-file-cache": "^1.0.2",
"postcss": "^8.3.6",
"string-template": "^1.0.0",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^10.0.3",
"ttf2eot": "^3.0.0",
"ttf2woff": "^3.0.0",
"ttf2woff2": "^4.0.4"
},
"devDependencies": {
"ava": "^3.15.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"postcss": ">= 8"
}
}