-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.89 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "fluid-css",
"version": "v0.20.2",
"version_short": "0.20",
"homepage": "https://github.com/fluid-framework",
"author": {
"name": "Ashfahan",
"email": "[email protected]",
"url": "https://ashfahan.com"
},
"maintainers": [
"Ashfahan"
],
"description": "Modern, Stylish, Easier and Powerful front-end framework for faster web development.",
"style": "dist/fluid.css",
"scss": "src/fluid.scss",
"main": "dist/fluid.css",
"keywords": [
"css",
"scss",
"mobile-first",
"mobile-ready",
"responsive",
"front-end",
"web",
"framework",
"flexbox"
],
"contributors": [
"fluid-framework"
],
"bugs": {
"url": "https://github.com/fluid-framework/fluid/issues/"
},
"scripts": {
"prepare": "husky install",
"start": "npm-run-all -s watch",
"watch": "node-sass ./src --output ./dist/ --output-style compact --indent-type space --indent-width 2 --source-map true -w",
"try": "npm-run-all -s lint test",
"lint": "stylelint src/**/*.scss --fix",
"test": "npm-run-all -p test:**",
"test:usedVar": "fusv ./src",
"test:style": "stylelint src/**/*.scss",
"test:compile": "node-sass ./src --output ./temp",
"build": "npm-run-all dist",
"dist": "npm-run-all -s test dist:**",
"dist:clean": "shx rm -rf ./dist",
"dist:compile": "node-sass ./src --output ./dist --output-style expanded --indent-type space --indent-width 2 --source-map-embed --source-map-contents",
"dist:vendorPrefix": "postcss ./dist/*.css --dir ./dist --use autoprefixer",
"dist:optimize:mediaQuery": "foreach -g ./dist/*.css -x \"mqpacker --sort ./dist/#{name}.css ./dist/#{name}.css\"",
"dist:optimize:duplicateSelectors": "foreach -g ./dist/*.css -x \"postcss ./dist/#{name}.css --output ./dist/#{name}.min.css --use postcss-combine-duplicated-selectors --no-map\"",
"dist:optimize:cssNano:compile": "foreach -g ./dist/*.min.css -x \"postcss ./dist/#{name}.css > ./dist/#{name}.temp\"",
"dist:optimize:cssNano:rename": "foreach -g ./dist/*.temp -x \"shx mv ./dist/#{name}.temp ./dist/#{name}.css\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluid-framework/Fluid.git"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"husky": "^7.0.0",
"autoprefixer": "^10.2.6",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.0.6",
"find-unused-sass-variables": "^3.1.0",
"foreach-cli": "^1.8.1",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-combine-duplicated-selectors": "^10.0.3",
"rfs": "^9.0.4",
"shx": "^0.3.3",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0"
},
"engines": {
"node": ">=8"
},
"files": [
"dist/*",
"src/*"
]
}