-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.85 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "flat-ui-colors-helper",
"version": "0.1.5",
"description": "CSS helpers for Flat UI Colors",
"keywords": [
"flat ui colors",
"flatuicolors",
"helper",
"classes"
],
"homepage": "https://github.com/maartenpaauw/flat-ui-colors-helper",
"bugs": {
"url": "https://github.com/maartenpaauw/flat-ui-colors-helper/issues"
},
"license": "GPL-3.0",
"author": {
"name": "Maarten Paauw",
"email": "maartenpaauw@gmail.com",
"url": "http://maartenpaauw.com/"
},
"main": "src/_flat-ui-colors.scss",
"repository": {
"type": "git",
"url": "https://github.com/maartenpaauw/flat-ui-colors-helper.git"
},
"scripts": {
"commitmsg": "commitlint -e",
"precommit": "lint-staged",
"test": "mocha ./tests/unit/runner.js",
"compile": "scss src/_flat-ui-colors.scss:flat-ui-colors.css --style expanded",
"compile-compressed": "scss src/_flat-ui-colors.scss:flat-ui-colors.min.css --style compressed",
"build": "npm run compile && npm run compile-compressed"
},
"devDependencies": {
"@commitlint/cli": "7.1.1",
"@commitlint/config-conventional": "7.1.2",
"husky": "1.1.2",
"lint-staged": "8.0.0",
"mocha": "5.2.0",
"node-sass": "4.9.4",
"sass-true": "4.0.0",
"stylelint": "9.7.0",
"stylelint-config-standard": "18.2.0",
"stylelint-scss": "3.3.2"
},
"lint-staged": {
"*.scss": [
"stylelint --syntax scss"
]
},
"stylelint": {
"plugins": [
"stylelint-scss"
],
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"each",
"include",
"mixin"
]
}
],
"color-hex-length": "long"
}
},
"greenkeeper": {
"branchPrefix": "dependency-update-",
"label": "dependency-update"
}
}