forked from webpack-contrib/sass-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "sass-loader",
"version": "3.0.0",
"description": "Sass loader for webpack",
"main": "index.js",
"scripts": {
"create-spec": "node test/tools/runCreateSpec.js",
"pretest": "node test/tools/runCreateSpec.js",
"test": "mocha -R spec",
"posttest": "jshint index.js test",
"test-bootstrap-sass": "webpack-dev-server --config test/bootstrapSass/webpack.config.js --content-base ./test/bootstrapSass",
"test-source-map": "webpack-dev-server --config test/sourceMap/webpack.config.js --content-base ./test/sourceMap",
"test-watch": "webpack --config test/watch/webpack.config.js",
"test-hmr": "webpack-dev-server --config test/hmr/webpack.config.js --content-base ./test/hmr --hot --inline",
"test-spec": "mocha -R spec test/spec.test.js"
},
"keywords": [
"sass",
"libsass",
"webpack",
"loader"
],
"repository": {
"type": "git",
"url": "git://github.com/jtangelder/sass-loader.git"
},
"author": "J. Tangelder",
"license": "MIT",
"peerDependencies": {
"webpack": "^1.12.2"
},
"dependencies": {
"async": "^1.4.0",
"loader-utils": "^0.2.5"
},
"devDependencies": {
"bootstrap-sass": "^3.3.5",
"css-loader": "^0.19.0",
"enhanced-require": "^0.5.0-beta6",
"file-loader": "^0.8.4",
"jshint": "^2.8.0",
"mocha": "^2.0.1",
"node-sass": "3.3.3",
"raw-loader": "^0.5.1",
"should": "^7.0.2",
"style-loader": "^0.12.3",
"webpack": "1.12.2",
"webpack-dev-server": "^1.7.0"
}
}