-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
{
"name": "fox-css",
"version": "0.15.1",
"type": "module",
"description": "Quickly style semantic html without the hassle.",
"repository": {
"type": "git",
"url": "https://github.com/fox-projects/fox-css.git"
},
"homepage": "https://github.com/fox-projects/fox-css#readme",
"bugs": {
"url": "https://github.com/fox-projects/fox-css/issues"
},
"author": "Edwin Kofler <[email protected]> (https://edwinkofler.com)",
"license": "MPL-2.0",
"private": false,
"engines": {
"node": ">=18"
},
"main": "dist/fox.min.css",
"files": [
"dist"
],
"keywords": [
"css",
"semantic",
"fox",
"simple",
"minimal",
"style",
"modern"
],
"scripts": {
"build": "gulp build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "hyperupcall-scripts-nodejs lint",
"serve": "gulp serve"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@hyperupcall/eslint-config": "^0.11.0",
"@hyperupcall/markdownlint-config": "^0.3.2",
"@hyperupcall/prettier-config": "^0.7.0",
"@hyperupcall/scripts-nodejs": "0.2.3",
"autoprefixer": "^10.4.16",
"browser-sync": "^3.0.2",
"del": "^7.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^9.1.0",
"gulp-rename": "^2.0.0",
"markdownlint": "^0.33.0",
"modern-normalize": "^2.0.0",
"open-color": "^1.9.1",
"postcss-import": "^16.0.0",
"prettier": "^3.2.2",
"prettier-plugin-pkg": "^0.18.0"
},
"browserslist": [
"last 2 versions",
"not dead",
"not ie <= 11"
],
"markdownlint-cli2": {
"extends": "./node_modules/@hyperupcall/markdownlint-config/.markdownlint.json"
},
"prettier": "@hyperupcall/prettier-config"
}