mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 08:22:53 +00:00
76 lines
1.7 KiB
JSON
76 lines
1.7 KiB
JSON
{
|
|
"name": "stylelint-config-prettier-scss",
|
|
"version": "1.0.0",
|
|
"description": "Turns off all SCSS rules that are unnecessary or might conflict with Prettier.",
|
|
"keywords": [
|
|
"stylelint",
|
|
"prettier",
|
|
"config",
|
|
"lint",
|
|
"css"
|
|
],
|
|
"repository": "prettier/stylelint-config-prettier-scss",
|
|
"license": "MIT",
|
|
"author": "Shannon Moeller <me@shannonmoeller.com>",
|
|
"contributors": [
|
|
"Corentin Tenret <tenretcorentin@gmail.com>",
|
|
"Jordan Hawker <hawker.jordan@gmail.com>"
|
|
],
|
|
"type": "commonjs",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"stylelint-config-prettier-scss": "bin/check.js",
|
|
"stylelint-config-prettier-scss-check": "bin/check.js"
|
|
},
|
|
"scripts": {
|
|
"cover": "npx c8 npm test",
|
|
"lint": "npx eslint --fix \"**/*.js\" && npx prettier --write \"**/*.js\"",
|
|
"test": "node test/checker.js"
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest"
|
|
},
|
|
"extends": "eslint:recommended"
|
|
},
|
|
"devDependencies": {
|
|
"@release-it-plugins/lerna-changelog": "^5.0.0",
|
|
"release-it": "^15.5.0",
|
|
"stylelint": "^15.6.1",
|
|
"stylelint-config-recommended-scss": "^11.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"stylelint": ">=15.0.0"
|
|
},
|
|
"engines": {
|
|
"node": "14.* || 16.* || >= 18"
|
|
},
|
|
"volta": {
|
|
"node": "18.16.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"release-it": {
|
|
"plugins": {
|
|
"@release-it-plugins/lerna-changelog": {
|
|
"infile": "CHANGELOG.md",
|
|
"launchEditor": false
|
|
}
|
|
},
|
|
"git": {
|
|
"tagName": "v${version}"
|
|
},
|
|
"github": {
|
|
"release": true,
|
|
"tokenRef": "GITHUB_AUTH"
|
|
}
|
|
}
|
|
}
|