-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(sorry for this bad commit)
- Loading branch information
Showing
10 changed files
with
217 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"name": "flexibility", | ||
"description": "Use Flexbox while supporting older Internet Explorers", | ||
"main": "flexibility.js", | ||
"authors": [ | ||
"Jonathan Neal <[email protected]> (http://jonathantneal.com)" | ||
], | ||
"license": "MIT", | ||
"keywords": [ | ||
"flex", | ||
"display", | ||
"direction", | ||
"wrap", | ||
"flow", | ||
"justify", | ||
"content", | ||
"align", | ||
"items", | ||
"content", | ||
"order", | ||
"grow", | ||
"shrink", | ||
"basis", | ||
"self", | ||
"auto", | ||
"start", | ||
"end", | ||
"center", | ||
"baseline", | ||
"stretch", | ||
"space", | ||
"between", | ||
"around", | ||
"polyfill", | ||
"ie", | ||
"internet", | ||
"explorer", | ||
"layout" | ||
], | ||
"homepage": "https://github.com/jonathantneal/flexibility.git", | ||
"moduleType": [], | ||
"ignore": [ | ||
"bower_components", | ||
"lib", | ||
"node_modules", | ||
"tests" | ||
], | ||
"version": "2.0.1", | ||
"_release": "2.0.1", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "2.0.1", | ||
"commit": "6a36e507fb72b8de57af62de4850434c3daf8b9d" | ||
}, | ||
"_source": "https://github.com/10up/flexibility.git", | ||
"_target": "*", | ||
"_originalSource": "flexibility" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"name": "flexibility", | ||
"description": "Use Flexbox while supporting older Internet Explorers", | ||
"main": "flexibility.js", | ||
"authors": [ | ||
"Jonathan Neal <[email protected]> (http://jonathantneal.com)" | ||
], | ||
"license": "MIT", | ||
"keywords": [ | ||
"flex", | ||
"display", | ||
"direction", | ||
"wrap", | ||
"flow", | ||
"justify", | ||
"content", | ||
"align", | ||
"items", | ||
"content", | ||
"order", | ||
"grow", | ||
"shrink", | ||
"basis", | ||
"self", | ||
"auto", | ||
"start", | ||
"end", | ||
"center", | ||
"baseline", | ||
"stretch", | ||
"space", | ||
"between", | ||
"around", | ||
"polyfill", | ||
"ie", | ||
"internet", | ||
"explorer", | ||
"layout" | ||
], | ||
"homepage": "https://github.com/jonathantneal/flexibility.git", | ||
"moduleType": [], | ||
"ignore": [ | ||
"bower_components", | ||
"lib", | ||
"node_modules", | ||
"tests" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
{ | ||
"name": "flexibility", | ||
"version": "2.0.1", | ||
"description": "A JavaScript polyfill for Flexbox", | ||
"main": "flexibility.js", | ||
"repository": "jonathantneal/flexibility", | ||
"keywords": [ | ||
"flex", | ||
"display", | ||
"direction", | ||
"wrap", | ||
"flow", | ||
"justify", | ||
"content", | ||
"align", | ||
"items", | ||
"content", | ||
"order", | ||
"grow", | ||
"shrink", | ||
"basis", | ||
"self", | ||
"auto", | ||
"start", | ||
"end", | ||
"center", | ||
"baseline", | ||
"stretch", | ||
"space", | ||
"between", | ||
"around", | ||
"polyfill", | ||
"ie", | ||
"internet", | ||
"explorer", | ||
"layout" | ||
], | ||
"files": [ | ||
"LICENSE.md", | ||
"flexibility.js" | ||
], | ||
"author": "Jonathan Neal <[email protected]> (http://jonathantneal.com)", | ||
"license": "MIT", | ||
"bugs": "https://github.com/jonathantneal/flexibility/issues", | ||
"homepage": "https://github.com/jonathantneal/flexibility#readme", | ||
"watch": { | ||
"compile-w-map": { | ||
"patterns": [ | ||
"lib", | ||
"test" | ||
], | ||
"extensions": "js", | ||
"quiet": "true" | ||
} | ||
}, | ||
"scripts": { | ||
"compile": "browserify lib/index.js --standalone flexibility --outfile flexibility.js", | ||
"compile-w-map": "browserify lib/index.js --debug --standalone flexibility --outfile flexibility.js", | ||
"compress": "uglifyjs flexibility.js --compress --mangle --output flexibility.js", | ||
"compress-w-map": "uglifyjs flexibility.js --compress --mangle --source-map flexibility.js.map --output flexibility.js", | ||
"build": "npm run compile && npm run compress", | ||
"eslint": "eslint ./lib/", | ||
"jscs": "jscs ./lib/", | ||
"prepublish": "npm run build", | ||
"test": "npm run jscs", | ||
"watch": "npm-watch" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"ava": "^0.15.2", | ||
"browserify": "^13.0.1", | ||
"eslint": "^2.13.1", | ||
"eslint-config-10up": "github:jonathantneal/eslint-config-10up", | ||
"jscs": "^3.0.5", | ||
"jscs-config-10up": "github:jonathantneal/jscs-config-10up", | ||
"npm-watch": "^0.1.4", | ||
"uglify-js": "^2.6.4" | ||
}, | ||
"engines": { | ||
"node": ">=0.12.0" | ||
}, | ||
"jscsConfig": { | ||
"preset": "10up" | ||
}, | ||
"eslintConfig": { | ||
"extends": "10up" | ||
} | ||
} |
Oops, something went wrong.