You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.4 KiB
69 lines
1.4 KiB
{
|
|
"name": "image-size",
|
|
"version": "1.0.2",
|
|
"description": "get dimensions of any image file",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"bin/image-size.js"
|
|
],
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"bin": "bin/image-size.js",
|
|
"scripts": {
|
|
"pretest": "eslint --ext .ts,.js bin lib specs",
|
|
"test": "nyc mocha",
|
|
"clean": "rm -rf dist docs",
|
|
"generate-docs": "typedoc",
|
|
"build": "tsc",
|
|
"prepack": "yarn clean && yarn build"
|
|
},
|
|
"keywords": [
|
|
"image",
|
|
"size",
|
|
"dimensions",
|
|
"resolution",
|
|
"width",
|
|
"height",
|
|
"png",
|
|
"jpeg",
|
|
"bmp",
|
|
"gif",
|
|
"psd",
|
|
"tga",
|
|
"tiff",
|
|
"webp",
|
|
"svg",
|
|
"icns",
|
|
"ico",
|
|
"cur"
|
|
],
|
|
"repository": "git://github.com/image-size/image-size.git",
|
|
"author": "netroy <aditya@netroy.in> (http://netroy.in/)",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/chai": "4.3.1",
|
|
"@types/glob": "7.2.0",
|
|
"@types/mocha": "9.1.1",
|
|
"@types/node": "18.0.3",
|
|
"@types/sinon": "10.0.12",
|
|
"@typescript-eslint/eslint-plugin": "5.30.6",
|
|
"@typescript-eslint/parser": "5.30.6",
|
|
"chai": "4.3.6",
|
|
"eslint": "8.19.0",
|
|
"glob": "8.0.3",
|
|
"mocha": "10.0.0",
|
|
"nyc": "15.1.0",
|
|
"sinon": "14.0.0",
|
|
"ts-node": "10.8.2",
|
|
"typedoc": "0.23.7",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"queue": "6.0.2"
|
|
},
|
|
"packageManager": "yarn@3.2.0"
|
|
}
|