-
-
Notifications
You must be signed in to change notification settings - Fork 429
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "sass-loader",
"version": "1.0.4",
"description": "Sass loader for webpack",
"main": "index.js",
"scripts": {
"pretest": "node test/prepare.js",
"test": "mocha -R spec",
"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",
"posttest": "jshint index.js test"
},
"keywords": [
"sass",
"libsass",
"webpack",
"loader"
],
"repository": {
"type": "git",
"url": "git://github.com/jtangelder/sass-loader.git"
},
"author": "J. Tangelder",
"license": "MIT",
"peerDependencies": {
"node-sass": "^3.1.0"
},
"dependencies": {
"loader-utils": "^0.2.5"
},
"devDependencies": {
"css-loader": "^0.15.6",
"enhanced-require": "^0.5.0-beta6",
"extract-text-webpack-plugin": "^0.8.2",
"jshint": "^2.8.0",
"mocha": "^2.0.1",
"node-sass": "^3.1.0",
"raw-loader": "^0.5.1",
"should": "^7.0.2",
"style-loader": "^0.12.3",
"webpack": "^1.4.0",
"webpack-dev-server": "^1.7.0"
}
}