-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 843 Bytes
/
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
{
"name": "@barcia/corecss",
"version": "6.1.0",
"description": "A simple CSS base",
"author": "Iván Barcia (https://barcia.dev)",
"license": "MIT",
"repository": "github:barcia/corecss",
"bugs": "https://github.com/barcia/corecss/issues",
"main": "dist/core.css",
"browser": "dist/core.min.css",
"files": [
"LICENSE.md",
"dist/core.css",
"dist/core.min.css"
],
"type": "module",
"scripts": {
"lint": "stylelint src/*.css",
"prebuild": "npm run lint",
"build": "node .scripts/build.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"css",
"core",
"base",
"standarize",
"normalize",
"sanitize",
"reset",
"css reset"
],
"devDependencies": {
"cssnano": "^6.0.0",
"postcss": "^8.4.12",
"postcss-import": "^16.0.0",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0"
}
}