forked from fabric-design/scss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.55 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
{
"name": "fabric-scss",
"version": "1.0.18",
"description": "",
"homepage": "https://fabric-design.github.io/styleguide/#/general/1-intro",
"main": "README.md",
"author": {
"name": "Zalando Wholesale"
},
"bugs": {
"url": "https://github.com/fabric-design/scss/issues"
},
"devDependencies": {
"conventional-github-releaser": "^1.1.12",
"del": "^3.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-bump": "^2.7.0",
"gulp-conventional-changelog": "^1.1.4",
"gulp-sass": "^2.3.1",
"gulp-stylelint": "5.0.0",
"run-sequence": "^2.1.0",
"stylelint": "8.2.0",
"stylelint-config-sass-guidelines": "3.1.0",
"stylelint-formatter-pretty": "1.0.3",
"stylelint-scss": "2.1.0",
"yargs": "10.0.3"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
},
"jspm": {
"registry": "npm"
},
"keywords": [
"toolkit",
"styleguide",
"framework",
"scaffold",
"patterns",
"library"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fabric-design/scss.git"
},
"scripts": {
"lint": "gulp lint-sass",
"prestart": "npm install",
"test": "gulp"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"plugins": [
"stylelint-scss"
],
"rules": {
"max-nesting-depth": 2,
"order/properties-alphabetical-order": null,
"selector-no-qualifying-type": [
true,
{
"ignore": [
"attribute",
"class"
]
}
]
}
}
}