-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "sassjs-loader",
"version": "2.0.0",
"description": "A webpack loader for sass.js",
"main": "index.js",
"files": [
"index.js",
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"test": "eslint *.js lib/**/*.js test/*.js test/**/*.js --fix && ava test/*.js test/lib/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickHeiner/sassjs-loader.git"
},
"keywords": [
"sassjs",
"webpack",
"sass"
],
"author": "Nick Heiner <nth23@cornell.edu>",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/NickHeiner/sassjs-loader/issues"
},
"homepage": "https://github.com/NickHeiner/sassjs-loader#readme",
"dependencies": {
"lodash": "^4.16.6",
"q": "^1.4.1"
},
"devDependencies": {
"ava": "^0.16.0",
"bootstrap-sass": "^3.3.7",
"css-parse": "^2.0.0",
"eslint": "^2.13.1",
"eslint-plugin-ava": "^2.5.0",
"raw-loader": "^0.5.1",
"sass.js": "^0.10.9",
"tmp": "0.0.30",
"traverse": "^0.6.6",
"webpack": "^4.12.1"
}
}