forked from mcmar/sass-values-loader
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "sass-vars-to-js-loader",
"version": "2.1.1",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .js ./",
"sample": "npm run sample:build",
"sample:build": "webpack --config example/webpack.config.js",
"sample:dev": "webpack-dev-server --inline --progress --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Eiskis/sass-values-loader.git"
},
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"fs-extra": "^7.0.1",
"loader-utils": "^1.2.3",
"lodash": "^4.17.11",
"lodash.camelcase": "^4.3.0",
"lodash.foreach": "^4.5.0",
"lodash.frompairs": "^4.0.1",
"lodash.isarray": "^4.0.0",
"lodash.mapkeys": "^4.6.0",
"query-ast": "^1.0.2",
"scss-parser": "^1.0.3"
},
"peerDependencies": {
"node-sass": "^4.11.0"
},
"jest": {
"testURL": "http://localhost/"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"jest": "^22.4.4",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.7",
"style-loader": "^0.18.2",
"webpack": "^3.12.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dev-server": "^2.11.3"
}
}