-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1020 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1020 Bytes
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": "greencss",
"version": "1.0.5",
"description": "The classy way to write sustainable CSS.",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "sass --watch --no-source-map scss:css",
"prepare": "husky install",
"lint": "prettier --check .",
"format": "prettier --write .",
"css": "sass --no-source-map scss:css",
"compressed-css": "sass --no-source-map scss:css/minified --style=compressed"
},
"keywords": [
"animation",
"css",
"design",
"library",
"greencss"
],
"repository": {
"type": "git",
"url": "https://github.com/Se-Gl/greencss.git"
},
"homepage": "https://www.greencss.dev",
"author": "Severin Glaser",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"semantic-release": "^19.0.3"
}
}