-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 822 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "@sanctucompu/basement",
"version": "1.2.0",
"description": "Ground floor CSS utility classes",
"repository": "https://github.com/sanctuarycomputer/basement.git",
"author": "Sanctuary Computer <dev@sanctuary.computer>",
"license": "MIT",
"devDependencies": {
"node-sass": "^4.11.0"
},
"scripts": {
"watch": "node-sass -w --output-style compact --source-map dist/basement.css.map src/index.scss dist/basement.css;",
"watch:min": "node-sass -w --output-style compressed --source-map dist/basement.min.css.map src/index.scss dist/basement.min.css;",
"build": "node-sass --output-style compact --source-map dist/basement.css.map src/index.scss dist/basement.css; node-sass --output-style compressed --source-map dist/basement.min.css.map src/index.scss dist/basement.min.css;"
}
}