-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
executable file
·43 lines (43 loc) · 1.09 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
{
"name": "viewport-units-buggyfill",
"version": "0.6.2",
"title": "Viewport Units Buggyfill for Mobile Safari",
"description": "Making viewport units (vh|vw|vmin|vmax) work properly in older WebKit and Trident",
"homepage": "http://github.com/rodneyrehm/viewport-units-buggyfill/",
"author": {
"name": "Rodney Rehm",
"url": "http://rodneyrehm.de"
},
"contributors": [
{
"name": "Zoltan Hawryluk",
"url": "http://www.useragentman.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rodneyrehm/viewport-units-buggyfill.git"
},
"license": "MIT",
"keywords": [
"ios",
"safari",
"viewport"
],
"main": "./viewport-units-buggyfill.js",
"files": [
"viewport-units-buggyfill.js",
"viewport-units-buggyfill.hacks.js"
],
"scripts": {
"lint": "eslint *.js",
"lint:fix": "eslint --fix *.js"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-semistandard": "^8.0.0",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1"
}
}