{ "name": "@csstools/css-tokenizer", "description": "Tokenize CSS", "version": "2.2.1", "contributors": [ { "name": "Antonio Laguna", "email": "antonio@laguna.es", "url": "https://antonio.laguna.es" }, { "name": "Romain Menke", "email": "romainmenke@gmail.com" } ], "license": "MIT", "funding": [ { "type": "github", "url": "https://github.com/sponsors/csstools" }, { "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" ], "devDependencies": { "@rmenke/css-tokenizer-tests": "^1.1.1", "postcss-parser-tests": "^8.8.0" }, "scripts": { "benchmark": "node ./test/benchmark.mjs", "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/test.mjs && node ./test/_import.mjs && node ./test/_require.cjs" }, "homepage": "https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer#readme", "repository": { "type": "git", "url": "https://github.com/csstools/postcss-plugins.git", "directory": "packages/css-tokenizer" }, "bugs": "https://github.com/csstools/postcss-plugins/issues", "keywords": [ "css", "tokenizer" ], "volta": { "extends": "../../package.json" } }