-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "sass-extract-loader",
"version": "1.1.0",
"description": "Webpack loader for sass-extract. Extract structured variables when importing sass files.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0"
},
"repository": "jgranstrom/sass-extract-loader",
"author": "John Granström <granstrom.john@gmail.com>",
"keywords": [
"webpack",
"loader",
"sass-extract",
"sass",
"scss",
"variables",
"convert",
"extract",
"import",
"json"
],
"license": "MIT",
"engines": {
"node": ">=4"
},
"peerDependencies": {
"webpack": "^3 || ^2 || ^2.2.0-rc.0 || ^2.1.0-beta || ^1.12.6",
"sass-extract": "^1.0.1 || ^2.0.0"
},
"devDependencies": {
"bluebird": "^3.4.7",
"chai": "^4.1.2",
"cz-conventional-changelog": "^2.1.0",
"mocha": "^4.0.1",
"webpack": "^3.9.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"loader-utils": "^1.1.0"
}
}