UNPKG

2.25 kBJSONView Raw
1{
2 "name": "jimp",
3 "version": "0.21.1",
4 "description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies)",
5 "main": "dist/index.js",
6 "module": "es/index.js",
7 "types": "types/index.d.ts",
8 "browser": "browser/lib/jimp.js",
9 "tonicExampleFilename": "example.js",
10 "files": [
11 "browser",
12 "dist",
13 "es",
14 "index.d.ts",
15 "fonts",
16 "types"
17 ],
18 "repository": "jimp-dev/jimp",
19 "scripts": {
20 "test": "cross-env BABEL_ENV=test mocha --require @babel/register",
21 "test:watch": "npm run test -- --reporter min --watch",
22 "test:coverage": "nyc npm run test",
23 "build": "npm run build:browser && npm run build:node:production && npm run build:module",
24 "build:watch": "npm run build:node:debug -- -- --watch --verbose",
25 "build:debug": "npm run build:browser:debug && npm run build:node:debug",
26 "build:module": "cross-env BABEL_ENV=module babel src -d es --source-maps --config-file ../../babel.config.js",
27 "build:node": "babel src -d dist --source-maps --config-file ../../babel.config.js",
28 "build:node:debug": "cross-env BABEL_ENV=development npm run build:node",
29 "build:node:production": "cross-env BABEL_ENV=production npm run build:node",
30 "build:browser": "cross-env NODE_ENV=production webpack",
31 "build:browser:debug": "cross-env NODE_ENV=development ENV=browser webpack"
32 },
33 "keywords": [
34 "image",
35 "image processing",
36 "image manipulation",
37 "png",
38 "jpg",
39 "jpeg",
40 "bmp",
41 "resize",
42 "scale",
43 "crop"
44 ],
45 "author": "Oliver Moran <oliver.moran@gmail.com>",
46 "license": "MIT",
47 "dependencies": {
48 "@jimp/custom": "^0.21.1",
49 "@jimp/plugins": "^0.21.1",
50 "@jimp/types": "^0.21.1",
51 "regenerator-runtime": "^0.13.3"
52 },
53 "devDependencies": {
54 "@jimp/test-utils": "^0.21.1",
55 "express": "^4.17.1",
56 "path-browserify": "^1.0.1",
57 "webpack": "^5.75.0",
58 "webpack-cli": "^5.0.1"
59 },
60 "nyc": {
61 "sourceMap": false,
62 "instrument": false,
63 "reporter": [
64 "text",
65 "text-summary",
66 "lcov",
67 "html"
68 ],
69 "exclude": [
70 "src/modules/*.js",
71 "test/*.js"
72 ]
73 },
74 "gitHead": "2f7c68ee4d0af628fc399e03521cb1d497870edd"
75}