Add more properties to package.json and package-lock.json

This commit is contained in:
Kevin MacMartin 2017-08-08 15:34:23 -04:00
parent fc32e030f2
commit 4871fc9ae9
2 changed files with 44 additions and 1 deletions

4
package-lock.json generated
View file

@ -1,6 +1,8 @@
{ {
"requires": true, "name": "contain-element",
"version": "1.6.2",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true,
"dependencies": { "dependencies": {
"ansi-regex": { "ansi-regex": {
"version": "2.1.1", "version": "2.1.1",

View file

@ -1,7 +1,48 @@
{ {
"name": "contain-element",
"description": "A JavaScript plugin to contain an element within its parent element.",
"version": "1.6.2",
"license": "MIT",
"main": "contain-element.min.js",
"homepage": "https://github.com/WilliamsNY/contain-element",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/WilliamsNY/contain-element.git"
},
"author": {
"name": "Kevin MacMartin",
"url": "https://github.com/prurigro"
},
"contributors": [
{
"name": "Luke Evers",
"url": "https://github.com/lukevers"
}
],
"keywords": [
"javascript",
"contain",
"cover",
"scale",
"fit",
"object-fit",
"width",
"height",
"parent",
"child",
"element",
"alignment",
"horizontal",
"vertical",
"aspect-ratio"
],
"devDependencies": { "devDependencies": {
"gulp": "^3.9.1", "gulp": "^3.9.1",
"gulp-concat": "^2.6.1", "gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.0" "gulp-uglify": "^3.0.0"
},
"scripts": {
"start": "gulp"
} }
} }