-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 936 Bytes
/
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
{
"name": "grailcss",
"version": "1.0.7",
"description": "Simple, no bullshit CSS helpers, resets & utilities.",
"main": "css/grail.css",
"scripts": {
"build": "yarn run build-sass && yarn run minify",
"build-sass": "node-sass --output-style expanded --source-map true scss/grail.scss css/grail.css",
"minify": "postcss css/grail.css -u cssnano -o css/grail.min.css --no-map"
},
"repository": "git+https://github.com/hachi-studio/grail-css.git",
"keywords": [
"grail",
"css",
"css-framework",
"css-variables",
"minimal"
],
"author": "Hachi (https://hachi.studio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hachi-studio/grail-css/issues"
},
"homepage": "https://github.com/hachi-studio/grail-css#readme",
"devDependencies": {
"cssnano": "^4.1.10",
"postcss-cli": "^7.1.1"
},
"private": false,
"dependencies": {
"node-sass": "^5.0.0"
}
}