[6a3a178] | 1 | {
|
---|
| 2 | "name": "postcss-lab-function",
|
---|
| 3 | "version": "2.0.1",
|
---|
| 4 | "description": "Use lab() and lch() color functions in CSS",
|
---|
| 5 | "author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
---|
| 6 | "license": "CC0-1.0",
|
---|
| 7 | "repository": "jonathantneal/postcss-lab-function",
|
---|
| 8 | "homepage": "https://github.com/jonathantneal/postcss-lab-function#readme",
|
---|
| 9 | "bugs": "https://github.com/jonathantneal/postcss-lab-function/issues",
|
---|
| 10 | "main": "index.cjs.js",
|
---|
| 11 | "module": "index.es.mjs",
|
---|
| 12 | "files": [
|
---|
| 13 | "index.cjs.js",
|
---|
| 14 | "index.cjs.js.map",
|
---|
| 15 | "index.es.mjs",
|
---|
| 16 | "index.es.mjs.map"
|
---|
| 17 | ],
|
---|
| 18 | "scripts": {
|
---|
| 19 | "prepublishOnly": "npm test",
|
---|
| 20 | "pretest": "rollup -c .rollup.js --silent",
|
---|
| 21 | "test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
|
---|
| 22 | "test:ec": "echint --ignore index.*.js test",
|
---|
| 23 | "test:js": "eslint *.js --cache --ignore-path .gitignore --quiet",
|
---|
| 24 | "test:tape": "postcss-tape"
|
---|
| 25 | },
|
---|
| 26 | "engines": {
|
---|
| 27 | "node": ">=6.0.0"
|
---|
| 28 | },
|
---|
| 29 | "dependencies": {
|
---|
| 30 | "@csstools/convert-colors": "^1.4.0",
|
---|
| 31 | "postcss": "^7.0.2",
|
---|
| 32 | "postcss-values-parser": "^2.0.0"
|
---|
| 33 | },
|
---|
| 34 | "devDependencies": {
|
---|
| 35 | "@babel/core": "^7.1.0",
|
---|
| 36 | "@babel/preset-env": "^7.1.0",
|
---|
| 37 | "babel-eslint": "^9.0.0",
|
---|
| 38 | "eslint": "^5.6.0",
|
---|
| 39 | "eslint-config-dev": "^2.0.0",
|
---|
| 40 | "postcss-tape": "^2.2.0",
|
---|
| 41 | "pre-commit": "^1.2.2",
|
---|
| 42 | "rollup": "^0.66.0",
|
---|
| 43 | "rollup-plugin-babel": "^4.0.3"
|
---|
| 44 | },
|
---|
| 45 | "eslintConfig": {
|
---|
| 46 | "extends": "dev",
|
---|
| 47 | "parser": "babel-eslint"
|
---|
| 48 | },
|
---|
| 49 | "keywords": [
|
---|
| 50 | "postcss",
|
---|
| 51 | "css",
|
---|
| 52 | "postcss-plugin",
|
---|
| 53 | "color",
|
---|
| 54 | "colors",
|
---|
| 55 | "rgb",
|
---|
| 56 | "rgba",
|
---|
| 57 | "hsl",
|
---|
| 58 | "hsla",
|
---|
| 59 | "hwb",
|
---|
| 60 | "functional",
|
---|
| 61 | "notation",
|
---|
| 62 | "design",
|
---|
| 63 | "syntax",
|
---|
| 64 | "space",
|
---|
| 65 | "comma"
|
---|
| 66 | ]
|
---|
| 67 | }
|
---|