-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "serato-css",
"version": "1.1.4",
"description": "A Modern Mini CSS Framework Built On Open Props And Sass. Full Of Handy Utilities, Colors And Animations Inspired To Be Most Predictable And Community Driven.",
"main": "public/index.html",
"scripts": {
"build:sass": "sass --no-source-map scss:public/css",
"copy:assets": "copyfiles -u 1 ./assets/**/* public",
"copy:html": "copyfiles -u 1 /*.html public",
"copy": "npm-run-all --parallel copy:*",
"watch:assets": "onchange '/assets/**/*' -- npm run copy:html",
"watch:html": "onchange '/*.html' -- npm run copy:html",
"watch:sass": "sass --no-source-map --watch scss:public/css",
"watch": "npm-run-all --parallel watch:*",
"serve": "browser-sync start --server public --files public",
"dev": "npm-run-all copy --parallel watch serve",
"build": "npm-run-all copy:html build:*",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hussseinkizz/serato-css.git"
},
"keywords": [
"CSS",
"Framework",
"Sass",
"SCSS",
"Serato",
"Friendly",
"Modern"
],
"author": "Hussein Kizz",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hussseinkizz/serato-css/issues"
},
"homepage": "https://github.com/Hussseinkizz/serato-css#readme",
"dependencies": {
"autoprefixer": "^10.4.2",
"browser-sync": "^2.27.7",
"copyfiles": "^2.4.1",
"cssnano": "^5.0.17",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"open": "^8.4.0",
"open-props": "^1.3.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-custom-media": "^8.0.0",
"props": "^0.3.0",
"sass": "^1.49.8"
}
}