65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "postcss-styled-syntax",
|
|
"version": "0.4.0",
|
|
"description": "PostCSS syntax for template literals CSS-in-JS (e. g. styled-components).",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib",
|
|
"!lib/__tests__"
|
|
],
|
|
"scripts": {
|
|
"types": "tsc",
|
|
"lint": "eslint . --max-warnings 0 && prettier '**/*.js' --check && npm run types",
|
|
"test": "jest",
|
|
"watch": "jest --watch",
|
|
"coverage": "jest --coverage",
|
|
"fix": "eslint . --fix --max-warnings=0 && prettier '**/*.js' --write",
|
|
"prepare": "husky install"
|
|
},
|
|
"repository": "hudochenkov/postcss-styled-syntax",
|
|
"keywords": [
|
|
"postcss",
|
|
"postcss-syntax",
|
|
"parser",
|
|
"css-in-js",
|
|
"styled-components"
|
|
],
|
|
"author": "Aleks Hudochenkov <aleks@hudochenkov.com>",
|
|
"license": "MIT",
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix --max-warnings 0",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"jest": {
|
|
"watchPlugins": [
|
|
"jest-watch-typeahead/filename",
|
|
"jest-watch-typeahead/testname"
|
|
]
|
|
},
|
|
"prettier": "prettier-config-hudochenkov",
|
|
"dependencies": {
|
|
"@typescript-eslint/typescript-estree": "^5.47.0",
|
|
"estree-walker": "^2.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"postcss": "^8.4.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/estree": "^1.0.0",
|
|
"@types/jest": "^29.2.5",
|
|
"eslint": "^8.31.0",
|
|
"eslint-config-hudochenkov": "^9.0.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.3.1",
|
|
"jest-watch-typeahead": "^2.2.1",
|
|
"lint-staged": "^13.1.0",
|
|
"postcss": "^8.4.21",
|
|
"prettier": "^2.8.1",
|
|
"prettier-config-hudochenkov": "^0.3.0",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|