-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.06 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "superior-scss",
"version": "3.0.3",
"description": "Flexible scss grid system",
"main": "./src/superior.scss",
"scripts": {
"lint": "sass-lint -v",
"test": "mocha",
"lint-staged": "lint-staged"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"*.scss": [
"sass-lint -v -q",
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbsmith731/superior.git"
},
"keywords": [
"scss-mixins",
"grid-system",
"grid-framework",
"columns",
"column-layout",
"scss",
"flexbox",
"flexbox-grid",
"flexbox-layout"
],
"author": "Brett Smith",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jbsmith731/superior/issues"
},
"homepage": "https://github.com/jbsmith731/superior#readme",
"devDependencies": {
"lint-staged": "^8.0.5",
"mocha": "^5.2.0",
"node-sass": "^4.10.0",
"pre-commit": "^1.2.2",
"sass-lint": "^1.12.1",
"sass-true": "^4.0.0"
},
"sasslintConfig": "./.sass-lint-config.yml"
}