-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "koality-flexbox-grid",
"version": "1.0.6",
"description": "Simple Flexbox Grid",
"main": "index.js",
"watch": {
"sass": {
"patterns": [
"src"
],
"extensions": "scss",
"quiet": false
},
"lint": {
"patterns": [
"src"
],
"extensions": "scss",
"quiet": false
}
},
"scripts": {
"build": "npm run lint; npm run sass; npm run compress",
"watch": "npm-watch",
"lint": "sass-lint './src/scss/*.scss' --verbose",
"sass": "sass --no-source-map ./src/scss/flexbox-grid.scss ./dist/css/flexbox-grid.css",
"compress": "sass --no-source-map ./src/scss/flexbox-grid.scss ./dist/css/flexbox-grid.min.css --style compressed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabean/flexbox-grid.git"
},
"author": "Josh Fabean",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabean/flexbox-grid/issues"
},
"homepage": "https://github.com/fabean/flexbox-grid#readme",
"dependencies": {
"eslint": "^8.19.0",
"npm-watch": "^0.11.0",
"sass": "^1.53.0",
"sass-lint": "^1.13.1"
}
}