-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
53
{
"name": "base-css-stylesheet",
"version": "1.0.0",
"private": true,
"description": "A work-in-progress base CSS stylesheet, which includes both normalize/reset and opinionated base styles.",
"keywords": [
"base",
"baseline",
"css",
"defaults",
"normalization",
"normalize-css",
"normalize",
"normalizer",
"opinionated-defaults",
"opinionated",
"sanitization",
"sanitize-css",
"sanitize",
"sanitizer"
],
"homepage": "https://github.com/germanfrelo/base-css-stylesheet#readme",
"bugs": {
"url": "https://github.com/germanfrelo/base-css-stylesheet/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/germanfrelo/base-css-stylesheet.git"
},
"license": "MIT",
"author": "Germán Freixinós López",
"type": "module",
"main": "",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "npm run format:check"
},
"lint-staged": {
"*.css": [
"prettier --write"
],
"!(*.css)": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.5.1"
}
}