-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 995 Bytes
/
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
{
"name": "stylelint-rscss",
"description": "Validate CSS (and SCSS, Less, SugarSS) to RSCSS conventions",
"version": "0.4.0",
"author": "Rico Sta. Cruz <[email protected]> (http://ricostacruz.com)",
"bugs": {
"url": "https://github.com/rstacruz/stylelint-rscss/issues"
},
"dependencies": {
"postcss-resolve-nested-selector": "0.1.1",
"postcss-selector-parser": "2.2.1"
},
"devDependencies": {
"stylelint": "7.2.0",
"stylelint-scss": "1.3.4",
"tape": "4.6.0"
},
"directories": {
"doc": "docs"
},
"homepage": "https://github.com/rstacruz/stylelint-rscss#readme",
"keywords": [
"css",
"rscss",
"sass",
"scss",
"stylelint",
"stylelint-config",
"stylelint-plugin"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rstacruz/stylelint-rscss.git"
},
"scripts": {
"errors": "stylelint 'fixtures/*'; true",
"test": "tape test.js"
}
}