-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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": "plasttic-reset",
"version": "3.0.0-alpha.0",
"description": "Plasttic CSS Reset: A CSS Reset styling for browser consistency with best practices defaults",
"author": "Goncalo Tojeiro <[email protected]> (https://tojeiro.me)",
"homepage": "https://github.com/tojeiro-me/Plasttic-reset",
"license": "MIT",
"keywords": [
"plasttic css reset",
"css reset",
"css"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/tojeiro-me/Plasttic-reset.git"
},
"main": "./dist/reset.min.css",
"directories": {
"src": "src",
"dist": "dist"
},
"files": [
"dist/reset.min.css",
"src/reset.css",
".browserslistrc",
"postcss.config.cjs",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
"bugs": {
"url": "https://github.com/tojeiro-me/Plasttic-reset/issues",
"email": "[email protected]"
},
"config": {},
"scripts": {
"commit:dist": "postcss src/reset.css --no-map -o dist/reset.min.css",
"commit:lint": "npx lint-staged --allow-empty"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"cssnano-preset-default": "^6.0.3",
"husky": "^9.0.9",
"lint-staged": "^15.2.1",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.2.5"
}
}