-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 812 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 812 Bytes
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
{
"name": "polarcss",
"version": "0.1.0",
"description": "CSS Framework",
"main": "src/scss/main.scss",
"sass": "src/scss/main.scss",
"style": "src/scss/main.scss",
"exports": {
".": "./src/scss/main.scss",
"./*": "./src/scss/*"
},
"scripts": {
"build": "sass src/scss/main.scss dist/polar.css --style=expanded",
"build:min": "sass src/scss/main.scss dist/polar.min.css --style=compressed",
"build:all": "npm run build && npm run build:min",
"watch": "sass --watch src/scss/main.scss dist/polar.css"
},
"repository": {
"type": "git",
"url": "https://github.com/northwebsolutions/polarcss.git"
},
"keywords": [
"Polar",
"css",
"scss",
"sass",
"framework"
],
"author": "Gabor Eszaki <info@northweb.co.uk>",
"license": "MPL-2.0"
}