-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (32 loc) · 1.17 KB
/
package.json
File metadata and controls
35 lines (32 loc) · 1.17 KB
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
{
"name": "sassyfloatgrid",
"version": "1.0.0",
"description": "A very simple and lightweight grid system based on the old way floating elements",
"main": "index.js",
"scripts": {
"watch": "node-sass src/sassyfloatgrid.scss dist/sassyfloatgrid.css -w",
"devserver": "live-server",
"start": "npm-run-all --parallel devserver watch",
"watch:dev": "node-sass example/main.scss example/main.css -w",
"start:dev": "npm-run-all --parallel devserver watch:dev",
"compile": "node-sass src/sassyfloatgrid.scss dist/sassyfloatgrid.css",
"compress": "node-sass dist/sassyfloatgrid.css dist/sassyfloatgrid.min.css --output-style compressed",
"build": "npm-run-all compile compress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sassyelements/sassy-float-grid.git"
},
"author": "https://github.com/0xkhan",
"license": "ISC",
"bugs": {
"url": "https://github.com/sassyelements/sassy-float-grid/issues"
},
"homepage": "https://github.com/sassyelements/sassy-float-grid#readme",
"devDependencies": {
"autoprefixer": "^10.4.0",
"node-sass": "^7.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0"
}
}