forked from alleyinteractive/sasslint-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 KB
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
{
"name": "@pab78430/sass-lint-webpack-plugin",
"version": "1.0.5",
"description": "sass-lint plugin for webpack",
"main": "index.js",
"keywords": [
"sass-lint",
"lint",
"linter",
"node-sass",
"webpack",
"plugin",
"webpack-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Pabrisson/sass-lint-webpack-plugin.git"
},
"author": "Drew Machat <drew@alleyinteractive.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pabrisson/sass-lint-webpack-plugin/issues"
},
"homepage": "https://github.com/Pabrisson/sass-lint-webpack-plugin#readme",
"dependencies": {
"chalk": "^2.3.2",
"loader-utils": "^1.1.0",
"node-sass": "^4.7.2",
"object-assign": "^4.1.1",
"sass-lint": "^1.12.1",
"text-table": "^0.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"memory-fs": "^0.4.1",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"webpack": "^3.11.0"
},
"peerDependencies": {
"sass-lint": "^1.12.1"
},
"scripts": {
"test": "mocha --harmony --full-trace -w",
"test-example": "webpack --config example/webpack.config.js",
"lint": "eslint lib test"
}
}