-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.21 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
53
54
55
56
57
58
{
"name": "stylelint-config-cssrecipes",
"version": "2.0.1",
"description": "cssrecipes shareable config for stylelint",
"keywords": [
"browser",
"style",
"css",
"css-components",
"css-recipes",
"cssrecipes",
"recipes",
"linter",
"stylelint-config",
"stylelint"
],
"author": "magsout",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stylelint/stylelint-config-cssrecipes.git"
},
"homepage": "https://github.com/stylelint/stylelint-config-cssrecipes",
"bugs": {
"url": "https://github.com/stylelint/stylelint-config-cssrecipes/issues"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"index.js"
],
"devDependencies": {
"ava": "^0.13.0",
"eslint": "^2.2.0",
"eslint-config-stylelint": "^1.0.0",
"postcss": "^5.0.13",
"stylelint": "^5.0.1"
},
"peerDependencies": {
"stylelint": "^4.5.0 || ^5.0.0"
},
"scripts": {
"ava": "ava --verbose \"__tests__/**/*.js\"",
"lint": "eslint . --ignore-path .gitignore",
"pretest": "npm run lint",
"test": "npm run ava"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": [
"stylelint"
]
}
}