-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.22 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@kickoff/grid.css",
"title": "Kickoff’s CSS Grid Module",
"description": "Simple powerful flexbox grid with float fallbacks",
"version": "1.2.2",
"homepage": "http://trykickoff.com",
"repo": "https://github.com/trykickoff/kickoff-grid.css",
"main": "index.css",
"style": "index.css",
"authors": [
{
"name": "Ashley Nolan",
"url": "https://ashleynolan.co.uk"
}
],
"contributors": [
"Github contributors <https://github.com/trykickoff/kickoff/graphs/contributors>"
],
"scripts": {
"start": "gulp css",
"info": "npm-scripts-info",
"release-patch": "release-it --non-interactive -p patch",
"release-minor": "release-it --non-interactive -p minor",
"release-major": "release-it --non-interactive -p major"
},
"scripts-info": {
"start": "Compile css"
},
"repository": {
"type": "git",
"url": "git://github.com/trykickoff/kickoff-grid.css.git"
},
"bugs": {
"url": "https://github.com/trykickoff/kickoff-grid.css/issues"
},
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"@kickoff/utils.scss": "^3.0.2",
"include-media": "^1.4.8"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"cssnano": "^3.7.3",
"doiuse": "^2.4.1",
"filesizegzip": "^2.0.0",
"gulp": "^3.9.1",
"gulp-banner": "^0.1.3",
"gulp-if": "2.0.1",
"gulp-postcss": "^6.1.1",
"gulp-sass": "^2.3.2",
"gulp-stylelint": "^3.0.0",
"gulp-tap": "^0.1.3",
"node-sass": "^3.8.0",
"postcss-bem-linter": "^2.5.1",
"postcss-reporter": "^1.4.1",
"postcss-scss": "^0.1.9",
"stylelint": "^7.1.0",
"stylelint-config-standard": "^12.0.0",
"stylelint-selector-bem-pattern": "^1.0.0"
},
"optionalDependencies": {
"npm-scripts-info": "^0.3.6",
"release-it": "2.4.0"
},
"keywords": [
"⚽",
"grid",
"css",
"eyeglass-module"
],
"eyeglass": {
"name": "kickoff-grid",
"sassDir": "scss",
"needs": "^1.1.2",
"exports": false
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": [
"tab",
{
"except": [
"value"
]
}
],
"max-empty-lines": 2
}
}
}