-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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/yunusga/postcss-momentum-scrolling.git"
},
"bugs": {
"url": "https://github.com/yunusga/postcss-momentum-scrolling/issues"
},
"homepage": "https://github.com/yunusga/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
}
}
}
}