A JSON list of CSS properties and their values. Some of the values represent value types, such as color and length. Most results contain initial and inherit. Some of the lesser known properties are missing values.
npm install css-properties-values --save
var cssProps = require('css-properties-values');
// output
// [
// {
// property: "color",
// values: ["color", "initial", "inherit"]
// },
// ...
// ]
npm install
npm run build