-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "kiencss",
"version": "0.1.0",
"description": "KienCSS is a simple CSS Framework",
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"http-server": "^14.1.1",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"sass": "^1.62.1",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3"
},
"scripts": {
"build-task:scss-compile:prod": "sass src/scss:dist/css --style=compressed --no-source-map --quiet",
"scss:prod": "npm-run-all -p build-task:scss-compile:prod",
"prod": "npm-run-all -p scss:prod",
"build-task:scss-compile": "sass src/scss:src/css",
"scss:build": "npm-run-all -p build-task:scss-compile",
"scss:watch": "nodemon -e scss --watch src/scss --exec npm run scss:build",
"docs": "http-server -c-1 -o docs",
"dev": "npm-run-all -p scss:watch docs",
"lint": "stylelint \"**/*.scss\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/lovvskillz/kien-css"
},
"author": "Vadim Zifra",
"license": "MIT License"
}