-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "postcss-viewport-height-correction",
"version": "2.0.3",
"description": "PostCSS plugin to correct viewport height value `vh` to real viewport height as stated by CSS Tricks in article https://css-tricks.com/the-trick-to-viewport-units-on-mobile/",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"viewport-height",
"css-tricks",
"fullscreen"
],
"scripts": {
"test": "jest && eslint ."
},
"author": "Faisal Manzer <faisal_manzer@yahoo.in>",
"license": "MIT",
"repository": "Faisal-Manzer/postcss-viewport-height-correction",
"dependencies": {
"postcss": "^7.0.18"
},
"devDependencies": {
"@logux/eslint-config": "^33.0.0",
"@types/jest": "^25.1.4",
"eslint": "^6.5.1",
"eslint-config-postcss": "^3.0.7",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^12.1.0",
"jest": "^24.9.0"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"testEnvironment": "node"
}
}