This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
forked from csstools/postcss-font-magician
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "@tinycreek/postcss-font-magician",
"version": "4.2.0",
"description": "PostCSS plugin that magically generates all the @font-face rules, with updated packages for security. ",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"contributors": [
"Jonathan Neal <jonathantneal@hotmail.com>",
"Ruslan Abdullaev <skarlatin@mail.ru>",
"tycrek <t@tycrek.com> (https://tycrek.com/)"
],
"license": "CC0-1.0",
"repository": "github:TinyCreek/postcss-font-magician",
"homepage": "https://github.com/TinyCreek/postcss-font-magician#readme",
"bugs": "https://github.com/TinyCreek/postcss-font-magician/issues",
"main": "index.js",
"scripts": {
"clean": "git clean -X -d -f",
"_//_test": "echo 'Running tests...'; ./node_modules/.bin/mocha && npm run lint",
"test": "echo Tests out of date for @tinycreek updates, skipping",
"lint": "./node_modules/.bin/eslint index.js"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"*.js": [
"npm run test --"
]
},
"dependencies": {
"@tinycreek/bootstrap-fonts-complete": "^2.0.0",
"@tinycreek/google-fonts-complete": "^3.0.0",
"directory-fonts-complete": "^1.2.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^10.2.0",
"postcss": "8.4.31"
},
"peerDependencies": {
"postcss": "^8.4.31"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"fonts",
"faces",
"generate",
"generation",
"weights",
"styles",
"variants",
"typography",
"type"
],
"-husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}