{ "name": "nth-check", "version": "2.0.0", "description": "Parses and compiles CSS nth-checks to highly optimized functions.", "author": "Felix Boehm ", "license": "BSD-2-Clause", "sideEffects": false, "funding": { "url": "https://github.com/fb55/nth-check?sponsor=1" }, "directories": { "lib": "lib/" }, "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "scripts": { "test": "jest --coverage && npm run lint", "coverage": "cat coverage/lcov.info | coveralls", "lint": "npm run lint:es && npm run lint:prettier", "lint:es": "eslint .", "lint:prettier": "npm run prettier -- --check", "format": "npm run format:es && npm run format:prettier", "format:es": "npm run lint:es -- --fix", "format:prettier": "npm run prettier -- --write", "prettier": "prettier '**/*.{ts,md,json,yml}'", "build": "tsc", "prepare": "npm run build" }, "repository": { "type": "git", "url": "https://github.com/fb55/nth-check" }, "keywords": [ "nth-child", "nth", "css" ], "bugs": { "url": "https://github.com/fb55/nth-check/issues" }, "homepage": "https://github.com/fb55/nth-check", "dependencies": { "boolbase": "^1.0.0" }, "devDependencies": { "@types/jest": "^26.0.0", "@types/node": "^14.0.5", "@typescript-eslint/eslint-plugin": "^4.1.0", "@typescript-eslint/parser": "^4.1.0", "eslint": "^7.0.0", "eslint-config-prettier": "^6.0.0", "jest": "^26.0.1", "prettier": "^2.1.1", "ts-jest": "^26.0.0", "typescript": "^4.0.2" }, "jest": { "preset": "ts-jest", "testEnvironment": "node" }, "prettier": { "tabWidth": 4 } }