-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
67 lines (67 loc) · 1.38 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
{
"name": "breakpoint-slicer",
"title": "Breakpoint Slicer",
"version": "3.0.0-beta.1",
"description": "Slice media queries with ease",
"main": "test.js",
"author": "Andrey Mikhaylov (lolmaus) <[email protected]>",
"contributors": [
"Github contributors <https://github.com/lolmaus/breakpoint-slicer/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lolmaus/breakpoint-slicer.git"
},
"bugs": {
"url": "https://github.com/lolmaus/breakpoint-slicer/issues"
},
"homepage": "https://lolmaus.github.io/breakpoint-slicer",
"license": "MIT",
"devDependencies": {
"jest": "^26.6.3",
"sass": "^1.32.5",
"sass-true": "^6.0.1",
"sassdoc": "^2.7.3"
},
"scripts": {
"test": "jest",
"dev": "jest --watch",
"sassdoc": "sassdoc *.s?ss -c .sassdoc.yml"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node",
"scss",
"sass"
]
},
"eyeglass": {
"needs": "*",
"sassDir": ".",
"exports": false
},
"keywords": [
"css",
"sass",
"media query",
"media queries",
"media",
"respond to",
"respond-to",
"breakpoint",
"breakpoints",
"eyeglass-module"
],
"files": [
"index.scss",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
]
}