1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "postcss-pxtorem",
- "description": "A CSS post-processor that converts px to rem.",
- "version": "6.1.0",
- "author": "cuth",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "git@github.com:cuth/postcss-pxtorem.git"
- },
- "bugs": "https://github.com/cuth/postcss-pxtorem/issues",
- "main": "index.js",
- "scripts": {
- "lint": "eslint .",
- "test": "jasmine-node spec"
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- },
- "lint-staged": {
- "*.js": [
- "eslint --fix",
- "prettier --write"
- ]
- },
- "devDependencies": {
- "eslint": "^6.8.0",
- "husky": "^4.2.3",
- "jasmine-node": "^1.16.0",
- "lint-staged": "^10.0.8",
- "postcss": "^8.0.0",
- "prettier": "^1.19.1"
- },
- "keywords": [
- "css",
- "rem",
- "pixel",
- "px",
- "postcss",
- "postcss-plugin"
- ],
- "peerDependencies": {
- "postcss": "^8.0.0"
- }
- }
|