123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "@csstools/selector-specificity",
- "description": "Determine selector specificity with postcss-selector-parser",
- "version": "2.2.0",
- "contributors": [
- {
- "name": "Antonio Laguna",
- "email": "antonio@laguna.es",
- "url": "https://antonio.laguna.es"
- },
- {
- "name": "Romain Menke",
- "email": "romainmenke@gmail.com"
- }
- ],
- "license": "CC0-1.0",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/csstools"
- },
- "engines": {
- "node": "^14 || ^16 || >=18"
- },
- "main": "dist/index.cjs",
- "module": "dist/index.mjs",
- "types": "dist/index.d.ts",
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "import": "./dist/index.mjs",
- "require": "./dist/index.cjs",
- "default": "./dist/index.mjs"
- }
- },
- "files": [
- "CHANGELOG.md",
- "LICENSE.md",
- "README.md",
- "dist"
- ],
- "peerDependencies": {
- "postcss-selector-parser": "^6.0.10"
- },
- "devDependencies": {
- "postcss-selector-parser": "^6.0.10"
- },
- "scripts": {
- "build": "rollup -c ../../rollup/default.mjs",
- "lint": "node ../../.github/bin/format-package-json.mjs",
- "prepublishOnly": "npm run build && npm run test",
- "stryker": "stryker run --logLevel error",
- "test": "node ./test/index.mjs && node ./test/_import.mjs && node ./test/_require.cjs"
- },
- "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity#readme",
- "repository": {
- "type": "git",
- "url": "https://github.com/csstools/postcss-plugins.git",
- "directory": "packages/selector-specificity"
- },
- "bugs": "https://github.com/csstools/postcss-plugins/issues",
- "keywords": [
- "css",
- "postcss-selector-parser",
- "specificity"
- ],
- "volta": {
- "extends": "../../package.json"
- }
- }
|