-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
59 lines (59 loc) · 1.16 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
{
"name": "sass-mq",
"description": "mq() is a Sass mixin that helps manipulating media queries in an elegant way.",
"version": "6.0.0",
"keywords": [
"responsive",
"sass",
"rwd",
"mediaquery",
"query",
"queries",
"media"
],
"ignore": [
"test",
"sassdoc",
"**/.*",
"bower.json",
"sassdoc.sh",
"scripts"
],
"files": [
"_mq.scss",
"_mq.import.scss",
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"sass/index.scss"
],
"main": "_mq.scss",
"scripts": {
"test": "jest",
"sassdoc": "./scripts/sassdoc.sh",
"build:examples": "sass ./examples:./examples --no-source-map"
},
"contributors": [
{
"name": "Guardian Media Group and Contributors.",
"email": "",
"web": ""
}
],
"bugs": {
"url": "https://github.com/sass-mq/sass-mq/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sass-mq/sass-mq.git"
},
"license": "MIT",
"homepage": "https://sass-mq.github.io/sass-mq/",
"devDependencies": {
"glob": "^7.1.7",
"jest": "^27.0.4",
"sass": "^1.35.1",
"sass-true": "^6.0.1",
"sassdoc": "^2.7.3"
}
}