UNPKG

postcss-easing-gradients

Version:

PostCSS plugin to create smooth linear-gradients that approximate easing functions.

93 lines (92 loc) 2.22 kB
{ "name": "postcss-easing-gradients", "version": "3.0.1", "engines": { "node": ">=6.0.0" }, "description": "PostCSS plugin to create smooth linear-gradients that approximate easing functions.", "scripts": { "test": "jest && eslint *.js", "lintfix": "eslint --fix --ext .js --ignore-path .gitignore ." }, "repository": { "type": "git", "url": "git+https://github.com/larsenwork/postcss-easing-gradients.git" }, "keywords": [ "postcss", "postcss-plugin", "css", "gradients" ], "author": "Andreas Larsen <andreas@larsenwork.com> (https://larsenwork.com)", "license": "MIT", "bugs": { "url": "https://github.com/larsenwork/postcss-easing-gradients/issues" }, "homepage": "https://github.com/larsenwork/postcss-easing-gradients", "dependencies": { "chroma-js": "^1.3.7", "easing-coordinates": "^2.0.0", "postcss": "^7.0.2", "postcss-value-parser": "^3.3.0" }, "devDependencies": { "eslint": "^5.5.0", "eslint-config-logux": "^25.0.1", "eslint-config-postcss": "^3.0.6", "eslint-config-prettier": "^3.0.1", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-jest": "^21.22.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-prettier": "^2.6.2", "eslint-plugin-promise": "^4.0.0", "eslint-plugin-security": "^1.4.0", "eslint-plugin-standard": "^4.0.0", "jest": "^23.5.0", "prettier": "^1.14.2", "prettier-eslint": "^8.8.2" }, "eslintConfig": { "plugins": [ "prettier" ], "env": { "jest": true }, "parserOptions": { "ecmaVersion": 6 }, "extends": [ "plugin:prettier/recommended" ], "rules": { "prettier/prettier": [ "error", { "singleQuote": true, "trailingComma": "es5", "parser": "flow" } ], "max-len": [ "error", 120 ], "func-style": [ "error", "declaration", { "allowArrowFunctions": true } ] } }, "prettier": { "semi": false, "singleQuote": true, "trailingComma": "es5", "printWidth": 100 } }