-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 900 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
{
"name": "sass-template",
"version": "1.0.0",
"description": "A template for Sass",
"main": "./src/",
"scripts": {
"css-compile": "sass --watch --source-map --embed-sources --no-error-css src/scss/:dist/css/",
"css-minify": "sass --style=compressed --source-map --embed-sources --no-error-css src/scss/style.scss dist/css/style.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonyssantos/sass-template.git"
},
"keywords": [
"sass",
"template",
"stylesheets",
"scss",
"starter-template",
"css-compiler",
"css-minify",
"palm-tree",
"palm-tree-css"
],
"author": "Adonys Santos",
"license": "MIT",
"bugs": {
"url": "https://github.com/adonyssantos/sass-template/issues"
},
"homepage": "https://github.com/adonyssantos/sass-template#readme",
"dependencies": {
"sass": "^1.34.1"
}
}