mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "postcss-modules",
|
|
"version": "6.0.1",
|
|
"description": "PostCSS plugin to use CSS Modules everywhere",
|
|
"main": "build/index.js",
|
|
"types": "index.d.ts",
|
|
"keywords": [
|
|
"postcss",
|
|
"css",
|
|
"postcss-plugin",
|
|
"modules",
|
|
"css modules",
|
|
"components"
|
|
],
|
|
"author": "Alexander Madyankin <alexander@madyankin.name>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/css-modules/postcss-modules.git"
|
|
},
|
|
"dependencies": {
|
|
"generic-names": "^4.0.0",
|
|
"icss-utils": "^5.1.0",
|
|
"lodash.camelcase": "^4.3.0",
|
|
"postcss-modules-extract-imports": "^3.1.0",
|
|
"postcss-modules-local-by-default": "^4.0.5",
|
|
"postcss-modules-scope": "^3.2.0",
|
|
"postcss-modules-values": "^4.0.0",
|
|
"string-hash": "^1.1.3"
|
|
},
|
|
"peerDependencies": {
|
|
"postcss": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.10",
|
|
"@babel/core": "^7.18.0",
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@babel/preset-env": "^7.18.0",
|
|
"@babel/register": "^7.17.7",
|
|
"autoprefixer": "^10.0.2",
|
|
"eslint": "^7.3.1",
|
|
"eslint-plugin-import": "^2.21.2",
|
|
"eslint-plugin-jest": "^23.17.0",
|
|
"husky": "^4.2.5",
|
|
"jest": "^26.0.1",
|
|
"lint-staged": "^10.2.11",
|
|
"postcss": "^8.1.9",
|
|
"prettier": "^2.0.5"
|
|
},
|
|
"scripts": {
|
|
"test": "make test",
|
|
"precommit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{json,md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.js": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"require": "@babel/register"
|
|
}
|