forked from shlinkio/css-coding-standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "@shlinkio/stylelint-config-css-coding-standard",
"version": "0.1.0",
"description": "Coding standard used by Shlink projects for stylesheets",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/shlinkio/css-coding-standard.git"
},
"keywords": [
"stylelint",
"lint",
"sass",
"bem",
"coding-standard"
],
"author": "Alejandro Celaya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shlinkio/css-coding-standard/issues"
},
"homepage": "https://github.com/shlinkio/css-coding-standard",
"scripts": {
"build": "mkdir -p dist && rm -rf dist/* && cp index.js dist"
},
"dependencies": {
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.0.1",
"stylelint-selector-bem-pattern": "^3.0.0"
},
"peerDependencies": {
"stylelint": "^15.10"
},
"devDependencies": {
"stylelint": "^15.10"
},
"files": [
"dist"
]
}