forked from brunch/sass-brunch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 970 Bytes
/
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
{
"name": "sass-brunch",
"version": "3.0.0-pre",
"description": "Adds Sass support to Brunch.",
"author": "Paul Miller (https://paulmillr.com/)",
"homepage": "https://github.com/brunch/sass-brunch",
"license": "MIT",
"keywords": [
"brunch",
"brunch-plugin",
"brunch-compiler",
"sass",
"scss",
"libsass",
"dart-sass"
],
"repository": {
"type": "git",
"url": "git@github.com:brunch/sass-brunch.git"
},
"scripts": {
"test": "eslint index.js && mocha"
},
"files": [
"index.js"
],
"dependencies": {
"anymatch": "~3.1.1",
"node-sass-glob-importer": "^5.3.2",
"postcss": "~7.0.24",
"postcss-modules": "~1.4.0",
"progeny": "~0.12.0",
"sass": "^1.23.0"
},
"devDependencies": {
"chai": "^4.2",
"eslint": "^6.7",
"eslint-config-brunch": "^1.2.1",
"mocha": "^6.2.1"
},
"eslintConfig": {
"extends": "brunch"
},
"engines": {
"node": ">= 10.16"
}
}