-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
37 lines (37 loc) · 1.35 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
{
"name": "shorthandcss",
"version": "1.1.1",
"homepage": "https://shorthandcss.com",
"description": "Feature rich CSS framework for the new decade",
"main": "scss/shorthand.scss",
"unpkg": "dist/shorthand.min.css",
"repository": {
"type": "git",
"url": "https://github.com/shorthandcss/shorthand.git"
},
"scripts": {
"build-autoprefix": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"cover 99.5%\" -r dist/*.css",
"build-dist-lite": "node-sass --output-style expanded --source-map true scss/lite.scss dist/lite.shorthand.css && node-sass --source-map true --output-style compressed scss/lite.scss dist/lite.shorthand.min.css",
"build-dist": "node-sass --output-style expanded --source-map true scss/shorthand.scss dist/shorthand.css && node-sass --source-map true --output-style compressed scss/shorthand.scss dist/shorthand.min.css",
"build": "npm run build-dist && npm run build-dist-lite && npm run build-autoprefix"
},
"author": "bansal-io <[email protected]>",
"license": "MIT",
"keywords": [
"css",
"scss",
"framework",
"ui",
"frontend"
],
"bugs": {
"url": "https://github.com/shorthandcss/shorthand/issues"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"banner-cli": "^0.14.1",
"node-sass": "^4.13.1",
"onchange": "^6.1.0",
"postcss-cli": "^6.1.3"
}
}