-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 867 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 867 Bytes
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
{
"name": "stylelint-config-anfema",
"version": "6.1.0",
"description": "Linting rules for anfema's CSS and SCSS styles",
"keywords": [
"stylelint",
"stylelint-config",
"anfema"
],
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint **/*.js",
"fix": "eslint **/*.js --fix && prettier **/*.js --write"
},
"repository": "git@github.com:anfema/stylelint-config-anfema.git",
"author": "Florian Pichler <f.pichler@anfe.ma>",
"license": "MIT",
"peerDependencies": {
"stylelint": "~9",
"stylelint-order": "~0.8.0"
},
"devDependencies": {
"babel-eslint": "~8",
"eslint": "~5",
"eslint-config-anfema": "^5.3.0",
"eslint-config-prettier": "~2",
"eslint-plugin-babel": "~5",
"eslint-plugin-import": "~2",
"eslint-plugin-prettier": "~2",
"prettier": "~1"
}
}