UNPKG

@carlosjeurissen/stylelint-csstree-validator

Version:

Stylelint plugin to validate CSS syntax

61 lines (60 loc) 1.54 kB
{ "name": "@carlosjeurissen/stylelint-csstree-validator", "version": "3.2.1", "description": "Stylelint plugin to validate CSS syntax", "repository": "carlosjeurissen/stylelint-validator", "author": "Roman Dvornov <rdvornov@gmail.com>", "license": "MIT", "type": "module", "main": "./cjs/index.cjs", "exports": { ".": { "import": "./lib/index.js", "require": "./cjs/index.cjs" }, "./package.json": "./package.json" }, "keywords": [ "stylelint-plugin", "stylelint", "csstree", "css", "validator", "syntax" ], "scripts": { "test": "mocha test --reporter ${REPORTER:-progress}", "test:cjs": "mocha cjs-test --reporter ${REPORTER:-progress}", "lint": "eslint lib test", "build": "npm run esm-to-cjs", "build-and-test": "npm run esm-to-cjs-and-test", "esm-to-cjs": "node scripts/esm-to-cjs", "esm-to-cjs-and-test": "npm run esm-to-cjs && npm run test:cjs", "coverage": "c8 --reporter=lcovonly npm test", "prepublishOnly": "npm run lint && npm test && npm run build-and-test" }, "engines": { "node": "^14.13.0 || >=15.0.0", "npm": ">=7.0.0" }, "dependencies": { "css-tree": "^2.3.1" }, "peerDependencies": { "stylelint": ">=16.0.0" }, "devDependencies": { "c8": "^10.1.3", "eslint": "^8.57.0", "mocha": "^11.1.0", "postcss": "^8.5.3", "postcss-less": "^6.0.0", "postcss-scss": "^4.0.9", "rollup": "^2.79.1", "stylelint": "16.6.1" }, "files": [ "cjs", "lib" ] }