├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── component.json ├── composer.json ├── modernizr.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | build 3 | node_modules 4 | components 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | /* Modernizr 3.0.0pre (Custom Build) | MIT & BSD */ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Modernizr 2 | ========= 3 | 4 | Shim repository for [Modernizr](http://github.com/Modernizr/Modernizr). 5 | 6 | Package Managers 7 | ---------------- 8 | 9 | * [Bower](http://bower.io): `modernizr` 10 | * [Composer](http://packagist.org/packages/components/modernizr): `components/modernizr` 11 | * [Component](http://component.io): `components/modernizr` -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "modernizr", 3 | "version": "3.5.0", 4 | "main": "modernizr.js", 5 | "description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user's browser.", 6 | "homepage": "https://modernizr.com/", 7 | "keywords": [ 8 | "html5", 9 | "css3", 10 | "browser", 11 | "feature detection" 12 | ], 13 | "author": "Modernizr ", 14 | "main": [ 15 | "modernizr.js" 16 | ], 17 | "license": "MIT" 18 | } 19 | -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "modernizr", 3 | "repo": "components/modernizr", 4 | "version": "3.5.0", 5 | "description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user's browser.", 6 | "homepage": "https://modernizr.com/", 7 | "keywords": [ 8 | "html5", 9 | "css3", 10 | "browser", 11 | "feature detection" 12 | ], 13 | "author": "Modernizr ", 14 | "main": "modernizr.js", 15 | "scripts": [ 16 | "modernizr.js" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "components/modernizr", 3 | "description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user's browser.", 4 | "keywords": [ 5 | "html5", 6 | "css3", 7 | "browser", 8 | "feature detection" 9 | ], 10 | "type": "component", 11 | "homepage": "https://modernizr.com", 12 | "license": "MIT", 13 | "authors": [ 14 | { "name": "Faruk Ates" }, 15 | { "name": "Paul Irish" }, 16 | { "name": "Alex Sexton" }, 17 | { "name": "Ryan Seddon" }, 18 | { "name": "Patrick Kettner" }, 19 | { "name": "Stu Cox" }, 20 | { "name": "Richard Herrera" } 21 | ], 22 | "extra": { 23 | "component": { 24 | "scripts": [ 25 | "modernizr.js" 26 | ], 27 | "shim": { 28 | "exports": "window.Modernizr" 29 | } 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "component-modernizr", 3 | "version": "3.5.0", 4 | "description": "Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user's browser.", 5 | "repository": { 6 | "type": "git", 7 | "url": "git://github.com/component/modernizr.git" 8 | }, 9 | "bugs": { 10 | "url": "https://github.com/Modernizr/Modernizr/issues" 11 | }, 12 | "keywords": [ 13 | "html5", 14 | "css3", 15 | "browser", 16 | "feature detection" 17 | ], 18 | "author": { 19 | "name": "Modernizr", 20 | "url": "https://modernizr.com/" 21 | }, 22 | "contributors": [ 23 | { 24 | "name": "Faruk Ates", 25 | "url": "https://twitter.com/KuraFire" 26 | }, 27 | { 28 | "name": "Paul Irish", 29 | "url": "https://twitter.com/paul_irish" 30 | }, 31 | { 32 | "name": "Alex Sexton", 33 | "url": "https://twitter.com/SlexAxton" 34 | }, 35 | { 36 | "name": "Ryan Seddon", 37 | "url": "https://twitter.com/ryanseddon" 38 | }, 39 | { 40 | "name": "Patrick Kettner", 41 | "url": "https://twitter.com/patrickkettner" 42 | }, 43 | { 44 | "name": "Stu Cox", 45 | "url": "https://twitter.com/stucoxmedia" 46 | }, 47 | { 48 | "name": "Richard Herrera", 49 | "url": "https://twitter.com/doctyper" 50 | } 51 | ], 52 | "license": "MIT" 53 | } 54 | --------------------------------------------------------------------------------