-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 932 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 932 Bytes
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
{
"name": "ruby-sass-loader",
"description": "Compile sass/scss files with webpack using the original ruby sass implementation",
"keywords": [
"sass",
"scss",
"ruby",
"webpack",
"loader"
],
"version": "0.4.0",
"author": "Dominik del Bondio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ddelbondio/ruby-sass-loader.git"
},
"files": [
"CHANGELOG.md",
"index.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly"
},
"dependencies": {
"async": "~0.9.0",
"loader-utils": "~0.2.3"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"loader-runner": "^2.1.1",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"rimraf": "^2.5.4",
"should": "^9.0.1",
"webpack": "^1.13.1"
}
}