-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
{
"name": "sass-all-variable-loader",
"version": "0.1.5",
"description": "Loads sass files and extracts all variable declarations including from the imported sass files.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Vadym Milichev <vadim.milichev@gmail.com>",
"scripts": {
"build": "tsc",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"bin": "bin/sass-vars.js",
"dependencies": {
"camelcase": "^4.0.0",
"sass-extract": "^2.1.0",
"chalk": "^2.0.0"
},
"peerDependencies": {
"camelcase": "^4.0.0",
"loader-utils": "*",
"node-sass": "^3.8.0 || 4",
"sass-extract": "^2.1.0"
},
"devDependencies": {
"@types/camelcase": "^4.1.0",
"@types/loader-utils": "^1.1.3",
"@types/lodash": "^4.14.104",
"@types/webpack": "^4.1.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.5",
"node-sass": "^4.7.2",
"typescript": "^2.7.2"
},
"resolutions": {
"@types/tapable": "1.0.0"
},
"keywords": [
"sass",
"scss",
"variables",
"convert",
"extract",
"import",
"json",
"webpack",
"loader"
],
"repository": {
"type": "git",
"url": "https://github.com/milichev/sass-all-variable-loader"
},
"homepage": "https://github.com/milichev/sass-all-variable-loader",
"license": "MIT",
"engines": {
"node": ">=6"
}
}