12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "postcss-nesting",
- "description": "Nest rules inside each other in CSS",
- "license": "CC0-1.0",
- "version": "10.1.2",
- "author": "Jonathan Neal <jonathantneal@hotmail.com>",
- "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting#readme",
- "bugs": "https://github.com/csstools/postcss-plugins/issues",
- "publishConfig": {
- "access": "public"
- },
- "main": "dist/index.cjs",
- "module": "dist/index.mjs",
- "jsdelivr": "dist/index.mjs",
- "unpkg": "dist/index.mjs",
- "exports": {
- ".": {
- "import": "./dist/index.mjs",
- "require": "./dist/index.cjs",
- "default": "./dist/index.mjs"
- }
- },
- "files": [
- "dist",
- "mod.js"
- ],
- "scripts": {
- "build": "rollup -c ../../rollup/default.js",
- "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
- "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
- "prepublishOnly": "npm run clean && npm run build && npm run test",
- "stryker": "stryker run --logLevel error",
- "test": "postcss-tape --ci && npm run test:exports",
- "test:deno": "deno run --unstable --allow-env --allow-read test/deno/test.js",
- "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
- },
- "engines": {
- "node": "^12 || ^14 || >=16"
- },
- "dependencies": {
- "postcss-selector-parser": "^6.0.8"
- },
- "devDependencies": {
- "postcss": "^8.3.6",
- "postcss-tape": "^6.0.1"
- },
- "peerDependencies": {
- "postcss": "^8.3"
- },
- "keywords": [
- "postcss",
- "postcss-plugin",
- "css",
- "atrules",
- "child",
- "children",
- "cssnext",
- "nested",
- "nestings",
- "rules",
- "selectors",
- "syntax",
- "specifications",
- "specs",
- "w3c",
- "csswg"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/csstools/postcss-plugins.git",
- "directory": "plugins/postcss-nesting"
- },
- "volta": {
- "extends": "../../package.json"
- }
- }
|