-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "keroseen-ui",
"version": "0.2.2",
"description": "Sass framework of minimal includes to use as a blueprint to create a custom UI without the bloat",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"sass": "sass --output-style compact --source-map true src/demo/sass/main.scss docs/demo.css",
"sass:dev": "sass --output-style nested --source-map true --watch src/demo/sass/main.scss docs/demo.css",
"build": "concurrently \"npm:sass\" \"npm:pug\" \"npm:imagemin\"",
"build:dev": "concurrently \"npm:sass\" \"npm:sass:dev\" \"npm:pug:dev\" \"npm:imagemin\"",
"pug": "pug -o docs/ src/demo/pug",
"pug:dev": "pug -o docs/ -w -P src/demo/pug",
"imagemin": "imagemin src/demo/images --out-dir docs/images",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pynklynn/keroseen-ui.git"
},
"keywords": [
"scss",
"sass",
"ui",
"css"
],
"author": "Will Steinmetz <willsteinmetz@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pynklynn/keroseen-ui/issues"
},
"homepage": "https://github.com/pynklynn/keroseen-ui#readme",
"devDependencies": {
"concurrently": "^7.6.0",
"imagemin-cli": "^6.0.0",
"node-static": "^0.7.11",
"pug-cli": "^1.0.0-alpha6",
"sass": "^1.57.1"
}
}