├── .eslintrc.json ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── dependabot-automerge.yml │ └── nodejs-test.yml ├── .gitignore ├── .prettierignore ├── LICENSE ├── package.json ├── readme.md ├── src ├── __fixtures__ │ ├── out.json │ └── tests.ts ├── index.ts ├── parse.spec.ts ├── parse.ts ├── stringify.spec.ts ├── stringify.ts ├── types.ts └── wpt.spec.ts ├── tsconfig.es.json ├── tsconfig.eslint.json └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [fb55] 2 | tidelift: npm/css-what 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/.github/workflows/dependabot-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/.github/workflows/nodejs-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/readme.md -------------------------------------------------------------------------------- /src/__fixtures__/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/__fixtures__/out.json -------------------------------------------------------------------------------- /src/__fixtures__/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/__fixtures__/tests.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/parse.spec.ts -------------------------------------------------------------------------------- /src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/parse.ts -------------------------------------------------------------------------------- /src/stringify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/stringify.spec.ts -------------------------------------------------------------------------------- /src/stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/stringify.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/wpt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/src/wpt.spec.ts -------------------------------------------------------------------------------- /tsconfig.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/tsconfig.es.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb55/css-what/HEAD/tsconfig.json --------------------------------------------------------------------------------