-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.54 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
42
43
{
"name": "ivelum.github.io",
"version": "1.0.0",
"description": "Ivelum development scripts",
"scripts": {
"clean": "rimraf css/",
"clean:all.css": "npx rimraf css/all.css",
"postcss": "postcss css/*.css --replace --no-map --use autoprefixer postcss-discard-comments",
"scss": "node-sass --output-style expanded --source-map true scss -o css/",
"scss:watch": "node-sass --output-style expanded --watch --source-map true scss -o css/",
"scss:build": "node-sass --output-style expanded scss -o css/",
"server": "live-server . --no-browser --ignore=scss,css/*.css.map",
"stylelint": "stylelint --syntax scss **/*.scss",
"stylelint:fix": "stylelint --fix --syntax scss **/*.scss",
"start": "npm run clean && npm run scss && npm run server & npm run scss:watch",
"build": "npm run clean && npm run scss:build && npm run clean:all.css && npm run postcss"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivelum/ivelum.github.io.git"
},
"devDependencies": {
"autoprefixer": "10.3.3",
"del-cli": "4.0.1",
"live-server": "1.2.1",
"node-sass": "6.0.1",
"postcss-cli": "8.3.1",
"postcss-discard-comments": "5.0.1",
"rimraf": "3.0.2",
"stylelint": "13.13.1",
"stylelint-config-sass-guidelines": "8.0.0",
"stylelint-scss": "3.20.1"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivelum/ivelum.github.io/issues"
},
"homepage": "https://github.com/ivelum/ivelum.github.io#readme"
}