-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 958 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
{
"name": "@citrusui/poole",
"version": "1.2.4",
"description": "A modernized fork of Poole designed for Jekyll 3.0+.",
"main": "docs/dist/poole.min.css",
"scripts": {
"fix": "npm rebuild node-sass",
"lint": "npx sass-lint -c .sass-lint.yml \"scss/*.scss\" -v -q",
"min": "npx node-sass --output-style compressed scss/poole.scss > docs/dist/poole.min.css",
"publish": "npm run lint && npm run sass && npm run min",
"sass": "npx node-sass --output-style expanded scss/poole.scss > docs/dist/poole.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/citrusui/poole.git"
},
"keywords": [
"poole",
"css",
"scss",
"jekyll"
],
"author": "Avery Magnotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/citrusui/poole/issues"
},
"homepage": "https://citrusui.github.io/poole/",
"devDependencies": {
"node-sass": "^4.5.3",
"sass-lint": "^1.10.2"
}
}