postcss-momentum-scrolling
Version:
PostCSS plugin for adding 'momentum' style scrolling behavior (-webkit-overflow-scrolling: touch) for elements with overflow (scroll, auto) on iOS
79 lines (78 loc) • 1.81 kB
JSON
{
"name": "postcss-momentum-scrolling",
"version": "3.14.22",
"description": "PostCSS plugin for adding 'momentum' style scrolling behavior (-webkit-overflow-scrolling: touch) for elements with overflow (scroll, auto) on iOS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"momentum-scrolling",
"scroll",
"ios-safari",
"ios",
"safari"
],
"author": "yunusga <yunusga@yandex.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solversgroup/postcss-momentum-scrolling.git"
},
"bugs": {
"url": "https://github.com/solversgroup/postcss-momentum-scrolling/issues"
},
"homepage": "https://github.com/solversgroup/postcss-momentum-scrolling#postcss-momentum-scrolling",
"scripts": {
"test": "jest-ci --coverage && eslint-ci .",
"refresh-deps": "rm -rf node_modules && rm package-lock.json && npm i"
},
"engines": {
"node": ">=10.0.0"
},
"peerDependencies": {
"postcss": "^8.3.6"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-ci": "^1.0.0",
"eslint-plugin-jest": "^24.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-ci": "^0.1.1",
"jest-cli": "^27.0.6",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended"
],
"rules": {
"jest/expect-expect": "off"
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}