-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
41 lines (41 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
41
{
"name": "sheet-slider",
"version": "3.0.0",
"description": "Slider or carousel for images based on pure CSS",
"main": "dist/css/main.min.css",
"files": [
"scss/**/*.scss",
"dist/css/main.css",
"dist/css/main.min.css"
],
"scripts": {
"dev": "npm-run-all --parallel watch:css serve",
"compile": "npm-run-all compile:css minify:css",
"compile:css": "sass --style expanded --no-source-map ./scss/:./dist/css/",
"minify:css": "cleancss -O2 --with-rebase -o dist/css/main.min.css dist/css/main.css",
"watch:css": "sass --watch src/scss:dist/css --style expanded --no-source-map",
"lint:css": "stylelint scss/**/*.scss --config .stylelintrc.json",
"lint:css:fix": "stylelint scss/**/*.scss --config .stylelintrc.json --fix",
"serve": "servor dist --reload --browse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkreations/SheetSlider.git"
},
"keywords": [],
"author": "Abel Daniel [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/zkreations/SheetSlider/issues"
},
"homepage": "https://github.com/zkreations/SheetSlider#readme",
"devDependencies": {
"browserslist": "^4.24.0",
"clean-css-cli": "^5.6.3",
"npm-run-all": "^4.1.5",
"sass": "^1.79.5",
"servor": "^4.0.2",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0"
}
}