-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "make-sass-lint-config",
"version": "0.1.3",
"description": "Convert your .scss-lint.yml config file into the equivalent .sass-lint.yml",
"main": "index.js",
"bin": {
"make-sass-lint-config": "./bin/make-sass-lint-config.js"
},
"scripts": {
"build": "./node_modules/browserify/bin/cmd.js index.js -o convert.js",
"pretest": "eslint .",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sasstools/make-sass-lint-config.git"
},
"keywords": [
"Sass",
"SCSS",
"lint",
"config"
],
"author": "Ben Rothman",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasstools/make-sass-lint-config/issues"
},
"homepage": "http://sasstools.github.io/make-sass-lint-config/",
"dependencies": {
"commander": "^2.8.1",
"js-yaml": "^3.4.3"
},
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^1.6.0",
"fs-extra": "^0.26.2",
"istanbul": "^0.4.0",
"mocha": "^2.3.3"
}
}