-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.57 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
{
"name": "@adamlui/scss-to-css",
"version": "1.10.17",
"description": "Recursively compile all SCSS files into minified CSS",
"author": {
"name": "Adam Lui",
"email": "adam@kudoai.com",
"url": "https://github.com/adamlui"
},
"homepage": "https://scsstocss.org",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "http://github.com/sponsors/adamlui"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/adamlui"
}
],
"main": "dist/scss-to-css.min.js",
"files": [
"docs/",
"!docs/*/"
],
"bin": {
"scsstocss": "dist/cli.min.js",
"scss-to-css": "dist/cli.min.js"
},
"directories": {
"lib": "./dist",
"doc": "./docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bash utils/build.sh",
"bump:patch": "bash utils/bump.sh patch",
"bump:minor": "bash utils/bump.sh minor",
"bump:major": "bash utils/bump.sh major",
"publish:patch": "bash utils/bump.sh patch --publish",
"publish:minor": "bash utils/bump.sh minor --publish",
"publish:major": "bash utils/bump.sh major --publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamlui/scss-to-css.git"
},
"keywords": [
"scss",
"compiler",
"minifier",
"cli",
"api",
"sass",
"css",
"stylesheets"
],
"bugs": {
"url": "https://github.com/adamlui/scss-to-css/issues"
},
"dependencies": {
"node-clipboardy": "^1.0.3",
"sass": "^1.80.5"
},
"devDependencies": {
"@adamlui/minify.js": "^1.8.5"
}
}