You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.3 KiB
58 lines
1.3 KiB
{ |
|
"name": "stylelint-config-recommended", |
|
"version": "3.0.0", |
|
"description": "Recommended shareable config for stylelint", |
|
"keywords": [ |
|
"stylelint", |
|
"stylelint-config", |
|
"recommended" |
|
], |
|
"author": "stylelint", |
|
"license": "MIT", |
|
"repository": { |
|
"type": "git", |
|
"url": "https://github.com/stylelint/stylelint-config-recommended.git" |
|
}, |
|
"main": "index.js", |
|
"files": [ |
|
"index.js" |
|
], |
|
"devDependencies": { |
|
"eslint": "^6.0.0", |
|
"eslint-config-stylelint": "^11.0.0", |
|
"jest": "^24.8.0", |
|
"jest-preset-stylelint": "^1.3.0", |
|
"np": "^5.0.3", |
|
"npm-run-all": "^4.1.5", |
|
"remark-cli": "^7.0.0", |
|
"remark-preset-lint-consistent": "^2.0.0", |
|
"remark-preset-lint-recommended": "^3.0.0", |
|
"stylelint": "^11.0.0" |
|
}, |
|
"peerDependencies": { |
|
"stylelint": ">=10.1.0" |
|
}, |
|
"scripts": { |
|
"lint:js": "eslint . --ignore-path .gitignore", |
|
"lint:md": "remark . --quiet --frail", |
|
"lint": "npm-run-all --parallel lint:*", |
|
"pretest": "npm run lint", |
|
"release": "np", |
|
"test": "jest", |
|
"watch": "jest --watch" |
|
}, |
|
"eslintConfig": { |
|
"extends": [ |
|
"stylelint" |
|
] |
|
}, |
|
"jest": { |
|
"preset": "jest-preset-stylelint" |
|
}, |
|
"remarkConfig": { |
|
"plugins": [ |
|
"preset-lint-recommended", |
|
"preset-lint-consistent" |
|
] |
|
} |
|
}
|
|
|