-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 847 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
{
"name": "css-grid",
"version": "1.0.0",
"description": "A Simple CSS Grid wrapper made with SASS",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"node-sass": "^4.13.0"
},
"scripts": {
"build-sass": "node-sass --source-map true --output-style expanded main.sass css/grid.css",
"build-sass-min": "node-sass --output-style compressed --source-map true main.sass css/grid.min.css",
"build-all": "npm run build-sass & npm run build-sass-min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/james-wasson/css-grid.git"
},
"keywords": [
"CSS",
"Grid",
"SASS"
],
"author": "James Adam Wasson",
"license": "MIT",
"bugs": {
"url": "https://github.com/james-wasson/css-grid/issues"
},
"homepage": "https://github.com/james-wasson/css-grid#readme"
}