@jhae/stylelint-config-verifier
Version:
A Stylelint configuration tester for Jest that helps you verify your defined rules.
66 lines (65 loc) • 1.87 kB
JSON
{
"name": "@jhae/stylelint-config-verifier",
"description": "A Stylelint configuration tester for Jest that helps you verify your defined rules.",
"version": "1.2.0",
"license": "MIT",
"author": {
"name": "JHAE",
"url": "https://github.com/jhae-de"
},
"homepage": "https://github.com/jhae-de/stylelint-config-verifier",
"repository": {
"url": "git+https://github.com/jhae-de/stylelint-config-verifier.git",
"type": "git"
},
"type": "module",
"main": "./dist/cjs/config-verifier.js",
"module": "./dist/esm/config-verifier.js",
"exports": {
"types": "./types/index.d.ts",
"require": "./dist/cjs/config-verifier.js",
"default": "./dist/esm/config-verifier.js"
},
"scripts": {
"build": "./bin/build.sh",
"build:types": "./bin/build-types.sh",
"fix": "npm run-script fix:prettier && npm run-script fix:eslint",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier . --write",
"lint": "npm run-script lint:prettier && npm run-script lint:eslint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --check",
"test": "jest",
"test:coverage": "npm run-script test -- --coverage",
"test:watch": "npm run-script test -- --watchAll",
"test:watch:coverage": "npm run-script test:watch -- --coverage"
},
"devDependencies": {
"@eslint/js": "^9.22",
"@types/jest": "^29.5",
"eslint": "^9.22",
"eslint-config-prettier": "^10.1",
"eslint-plugin-prettier": "^5.2",
"prettier": "^3.5",
"ts-jest": "^29.2",
"typescript": "^5.8",
"typescript-eslint": "^8.26"
},
"peerDependencies": {
"jest": "^29.0",
"stylelint": "^16.0"
},
"keywords": [
"config",
"configuration",
"jest",
"rule",
"rules",
"stylelint",
"stylelint-scss",
"stylelintrc",
"test",
"ts-jest",
"verify"
]
}