-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "gardevoir",
"version": "1.0.0",
"description": "The Modern CSS Reset 🚀 ",
"main": "dist/index.min.css",
"keywords": [
"css",
"css-reset",
"reset-css",
"normalize-css",
"reset",
"browser",
"style"
],
"homepage": "https://github.com/krshoss/gardevoir#readme",
"license": "MIT",
"author": "Krish Gupta <[email protected]>",
"files": [
"dist"
],
"repository": "github:krshoss/gardevoir",
"scripts": {
"compile": "sass src/index.scss dist/index.css --no-source-map",
"postcompile": "sass src/mini.scss dist/mini.css --no-source-map",
"prefix": "postcss dist/index.css -r --no-map -u autoprefixer",
"postprefix": "postcss dist/mini.css -r --no-map -u autoprefixer",
"minify": "cleancss dist/index.css -o dist/index.min.css",
"postminify": "cleancss dist/mini.css -o dist/mini.min.css",
"compress": "bundlewatch --config .bundlewatch.config.js",
"build": "yarn compile && yarn prefix && yarn minify && yarn compress",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"autoprefixer": "10.4.20",
"brotli-size": "4.0.0",
"bundlewatch": "0.4.0",
"clean-css-cli": "5.6.3",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"sass": "1.83.1",
"semantic-release": "24.2.1"
}
}