forked from sasstools/sass-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "sass-lint",
"version": "1.5.0",
"description": "All Node Sass linter!",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"pretest": "eslint .",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests tests/rules",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bin": {
"sass-lint": "./bin/sass-lint.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sasstools/sass-lint.git"
},
"keywords": [
"Sass",
"SCSS",
"lint"
],
"author": "Sam Richard",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasstools/sass-lint/issues"
},
"homepage": "https://github.com/sasstools/sass-lint",
"dependencies": {
"commander": "^2.8.1",
"eslint": "^1.1.0",
"fs-extra": "^0.26.0",
"glob": "^7.0.0",
"gonzales-pe": "3.0.0-31",
"js-yaml": "^3.5.4",
"lodash.capitalize": "^4.1.0",
"lodash.kebabcase": "^4.0.0",
"merge": "^1.2.0",
"util": "^0.10.3"
},
"devDependencies": {
"coveralls": "^2.11.4",
"deep-equal": "^1.0.1",
"istanbul": "^0.4.0",
"mocha": "^2.2.5",
"should": "^8.2.2"
}
}