-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 2.31 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "css-pro-layout",
"version": "1.1.0",
"description": "CSS library for building responsive and customizable page layouts",
"main": "dist/css/css-pro-layout.css",
"files": [
"dist"
],
"repository": "https://github.com/azouaoui-med/css-pro-layout.git",
"author": "Mohamed Azouaoui <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rimraf dist",
"sass": "node-sass src/scss/css-pro-layout.scss dist/css/css-pro-layout.css",
"sass:compressed": "node-sass src/scss/css-pro-layout.scss dist/css/css-pro-layout.min.css --output-style compressed",
"sass:watch": "node-sass src/scss/css-pro-layout.scss dist/css/css-pro-layout.css -w",
"copy:sass": "copyfiles -u 1 src/scss/* dist",
"copy:less": "copyfiles -u 1 src/less/* dist",
"autoprefixer": "postcss dist/css/css-pro-layout.css --use autoprefixer -r --no-map",
"autoprefixer:compressed": "postcss dist/css/css-pro-layout.min.css --use autoprefixer -r --no-map",
"build:compressed": "yarn sass:compressed && yarn autoprefixer:compressed",
"build:css": "yarn sass && yarn autoprefixer",
"build": "yarn build:css && yarn build:compressed && yarn copy:sass && yarn copy:less",
"start:example": "live-server --port=3131 --entry-file=./examples/ --watch=./examples/basic/,./dist/",
"start": "concurrently \" yarn start:example\" \" yarn sass:watch\"",
"start:website": "yarn --cwd ./website start",
"build:website": "yarn --cwd ./website build",
"deploy:website": "yarn --cwd ./website build && gh-pages -d website/build"
},
"devDependencies": {
"autoprefixer": "^9.8.1",
"concurrently": "^5.2.0",
"copyfiles": "^2.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"live-server": "^1.2.1",
"node-sass": "^5.0.0",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2"
},
"keywords": [
"Layout",
"css",
"scss",
"less",
"responsive"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{scss}": [
"eslint --fix"
]
},
"browserslist": [
"defaults",
"> .5% or last 2 versions"
]
}