forked from evidentpoint/buffer-image-size
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
44
45
46
47
48
49
50
51
{
"name": "@evidenceprime/buffer-image-size",
"version": "0.6.8",
"description": "get dimensions of any image buffer",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=8.0"
},
"scripts": {
"prebuild": "rm -rf dist && eslint lib specs",
"build": "webpack",
"postbuild": "node scripts/copy-build-files.js",
"pretest": "eslint lib specs",
"pretest:ci": "eslint lib specs",
"test": "mocha specs",
"test:ci": "mocha specs --reporter mocha-multi-reporters --reporter-options configFile=mocha-reporters.json",
"release": "yarn run build && npm publish dist/"
},
"repository": "evidenceprime/buffer-image-size",
"keywords": [
"image",
"size",
"dimensions",
"resolution",
"width",
"height",
"png",
"jpeg",
"bmp",
"gif",
"psd",
"webp",
"svg",
"ico",
"cur"
],
"author": "netroy <aditya@netroy.in> (http://netroy.in/)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"webpack": "^5.67.0",
"webpack-cli": "^5.1.4"
}
}