-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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
{
"name": "postcss-font-grabber",
"version": "3.0.2",
"description": "It grabs remote font files and update your CSS, just like that.",
"author": "AaronJan <[email protected]>",
"homepage": "https://github.com/AaronJan/postcss-font-grabber",
"bugs": "https://github.com/AaronJan/postcss-font-grabber/issues",
"repository": {
"type": "git",
"url": "https://github.com/AaronJan/postcss-font-grabber.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"pretty": "npx prettier --write {src,tests}/**/*.ts",
"build": "rimraf -rf dist && tsc",
"prepare": "npm run build"
},
"keywords": [
"postcss-plugin",
"css",
"font-face",
"font",
"download"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/gulp": "^4.0.8",
"@types/jest": "^23.3.14",
"@types/node": "^14.14.22",
"@types/sinon": "^9.0.10",
"coveralls": "^3.1.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.0",
"jest": "^26.6.3",
"postcss": "^8.0.0",
"postcss-import-url": "^6.0.0",
"postcss-loader": "^5.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.38.4",
"rollup-plugin-postcss": "^4.0.0",
"sinon": "^9.2.4",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3",
"webpack": "^5.20.1"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
}