-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.82 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
{
"name": "sheer",
"version": "0.0.15",
"description": "customizable and extendable CSS framework",
"repository": {
"type": "git",
"url": "[email protected]:sarbbottam/sheer.git"
},
"keywords": [
"sheer, customizable, extendable, css framework"
],
"scripts": {
"setup": "rm -rf dist; mkdir -p dist/css",
"postcss": "postcss -c config/postcss.json",
"rtlcss": "rtlcss ./dist/css/ltr.css ./dist/css/rtl.css",
"cssnano-ltr": "cssnano dist/css/ltr.css dist/css/ltr.min.css --discardComments.removeAll",
"cssnano-rtl": "cssnano dist/css/rtl.css dist/css/rtl.min.css --discardComments.removeAll",
"cssnano": "npm run cssnano-ltr && npm run cssnano-rtl",
"build": "npm run setup && npm run postcss && npm run rtlcss && npm run cssnano",
"deploy": "./script/deploy.sh"
},
"author": "Sarbbottam Bandyopadhyay",
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"cssnano-cli": "^1.0.3",
"del": "^2.2.0",
"grunt": "~0.4.2",
"grunt-banner": "^0.6.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-postcss": "^0.8.0",
"grunt-rtlcss": "^2.0.1",
"gulp": "^3.8.11",
"gulp-cli": "^1.2.1",
"gulp-header": "^1.2.2",
"gulp-minify-css": "^1.1.0",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-rtlcss": "^1.0.0",
"load-grunt-tasks": "~3.4.1",
"postcss": "^5.0.19",
"postcss-calc": "^5.2.0",
"postcss-cli": "^2.5.1",
"postcss-custom-media": "^5.0.1",
"postcss-custom-properties": "^5.0.0",
"postcss-discard-comments": "^2.0.4",
"postcss-import": "^8.0.2",
"postcss-inline-svg": "^1.3.2",
"postcss-media-minmax": "^2.1.1",
"postcss-mixins": "^4.0.1",
"postcss-nested": "^1.0.0"
},
"license": "MIT"
}