-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "simple-include-media",
"version": "1.1.12",
"sasslintConfig": "lint/.sasslintrc",
"description": "A simple, all-rounded and easy-to-use media queries library for Sass(Scss)",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "sass-lint -c lint/.sasslintrc -v -q",
"generate-doc": "sassdoc dist -d docs",
"compile-example": "node-sass example/input.scss example/output.css --output-style nested && postcss example/output.css -r --no-map --use postcss-discard-comments",
"publish-npm": "npm run generate-doc && npm publish",
"publish-patch": "npm version patch && npm run publish-npm",
"publish-minor": "npm version minor && npm run publish-npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WillisShek/simple-include-media.git"
},
"keywords": [
"sass",
"scss",
"media",
"media query",
"media queries",
"include media",
"css",
"style",
"html"
],
"author": "Willis Shek",
"license": "MIT",
"bugs": {
"url": "https://github.com/WillisShek/simple-include-media/issues"
},
"homepage": "https://github.com/WillisShek/simple-include-media#readme",
"devDependencies": {
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"postcss-cli": "^5.0.1",
"postcss-discard-comments": "^2.0.4",
"sass-lint": "^1.13.1",
"sassdoc": "^2.7.0"
},
"resolutions": {
"node-sass/**/request": "^2.82.0"
}
}