-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.25 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
41
{
"name": "shiba-css",
"version": "1.0.2",
"description": "A simple and lightweight CSS Framework built with Sass for building responsive web apps",
"homepage": "https://completejavascript.github.io/shiba-css",
"main": "index.js",
"scripts": {
"compile": "node-sass ./src/scss/ -o ./docs/css/ -w -r --source-map-embed --source-map-contents --output-style expanded",
"compress": "node-sass ./src/scss/shiba.scss ./docs/css/shiba.min.css -w --output-style compressed",
"serve": "light-server -s docs -w \"docs/**\"",
"dev": "concurrently \"yarn run compile\" \"yarn run compress\" \"yarn run serve\"",
"first-release": "standard-version --first-release",
"prerelease": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/completejavascript/shiba-css.git"
},
"bugs": {
"url": "https://github.com/completejavascript/shiba-css/issues"
},
"keywords": [
"css",
"sass",
"ui",
"css",
"framework",
"responsive",
"mobile-first"
],
"author": "Lam Pham",
"license": "MIT",
"private": false,
"devDependencies": {
"concurrently": "^6.2.0",
"light-server": "^2.9.1",
"node-sass": "^6.0.0",
"standard-version": "^9.3.0"
},
"dependencies": {}
}