forked from sasstools/sass-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
50
51
52
{
"name": "sass-lint",
"version": "1.10.2",
"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 -t 3000 tests tests/rules tests/helpers",
"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": "^2.7.0",
"front-matter": "2.1.2",
"fs-extra": "^1.0.0",
"glob": "^7.0.0",
"globule": "^1.0.0",
"gonzales-pe": "3.4.7",
"js-yaml": "^3.5.4",
"lodash.capitalize": "^4.1.0",
"lodash.kebabcase": "^4.0.0",
"merge": "^1.2.0",
"path-is-absolute": "^1.0.0",
"util": "^0.10.3"
},
"devDependencies": {
"coveralls": "^2.11.4",
"deep-equal": "^1.0.1",
"istanbul": "^0.4.0",
"mocha": "^3.0.1",
"sinon": "^1.17.4"
}
}