postcss-color-emoji
Version:
70 lines (69 loc) • 1.77 kB
JSON
{
"name": "postcss-color-emoji",
"version": "4.0.0",
"description": "Emoji in full color",
"author": "Philip Bordallo",
"license": "MIT",
"repository": "philipbordallo/postcss-color-emoji",
"homepage": "https://github.com/philipbordallo/postcss-color-emoji#readme",
"bugs": "https://github.com/philipbordallo/postcss-color-emoji/issues",
"keywords": [
"emoji",
"color",
"color-emoji",
"system",
"font",
"family"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"engines": {
"node": ">=12.0.0"
},
"browserslist": [
"node 14",
"node 12"
],
"scripts": {
"prepublishOnly": "npm test",
"build": "rollup --config configs/rollup.config.js --silent",
"build:visualTest": "npm run build && node scripts/buildVisualTestStyle.js",
"lint": "eslint ./src/",
"pretest": "npm run build && npm run lint",
"test": "postcss-tape --config ./configs/tape.config.js --fixtures ./tests/ --plugin ./dist/index.cjs.js"
},
"eslintConfig": {
"extends": "@philipbordallo",
"rules": {
"no-param-reassign": [
"error",
{
"props": true,
"ignorePropertyModificationsFor": [
"decl"
]
}
]
}
},
"babel": {
"presets": [
"./configs/babel.config.js"
]
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@philipbordallo/eslint-config": "^4.0.1",
"@rollup/plugin-babel": "^5.3.0",
"eslint": "^7.32.0",
"postcss": "^8.3.6",
"postcss-font-family-system-ui": "^5.0.0",
"postcss-system-monospace": "^4.0.0",
"postcss-tape": "^6.0.1",
"rollup": "^2.56.3"
},
"peerDependencies": {
"postcss": "^8.3.6"
}
}