UNPKG

2.68 kBJSONView Raw
1{
2 "name": "jimp",
3 "version": "0.8.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 "browser": "browser/lib/jimp.js",
8 "types": "types/index.d.ts",
9 "typesVersions": {
10 ">=3.1.0-0": {
11 "*": [
12 "types/ts3.1/index.d.ts"
13 ]
14 }
15 },
16 "tonicExampleFilename": "example.js",
17 "files": [
18 "browser",
19 "dist",
20 "es",
21 "index.d.ts",
22 "fonts"
23 ],
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/oliver-moran/jimp.git"
27 },
28 "bugs": {
29 "url": "https://github.com/oliver-moran/jimp/issues"
30 },
31 "scripts": {
32 "test": "cross-env BABEL_ENV=test mocha --require @babel/register",
33 "test:watch": "npm run test -- --reporter min --watch",
34 "test:coverage": "nyc npm run test",
35 "browser-build": "node tools/browser-build.js test",
36 "build": "npm run build:browser && npm run build:node:production && npm run build:module",
37 "build:watch": "npm run build:node:debug -- -- --watch --verbose",
38 "build:debug": "npm run build:browser:debug && npm run build:node:debug",
39 "build:module": "cross-env BABEL_ENV=module babel src -d es --source-maps --config-file ../../babel.config.js",
40 "build:node": "babel src -d dist --source-maps --config-file ../../babel.config.js",
41 "build:node:debug": "cross-env BABEL_ENV=development npm run build:node",
42 "build:node:production": "cross-env BABEL_ENV=production npm run build:node",
43 "build:browser": "cross-env BABEL_ENV=production node tools/browser-build.js prepublish",
44 "build:browser:debug": "cross-env BABEL_ENV=development ENV=browser node tools/browser-build.js prepublish"
45 },
46 "keywords": [
47 "image",
48 "image processing",
49 "image manipulation",
50 "png",
51 "jpg",
52 "jpeg",
53 "bmp",
54 "resize",
55 "scale",
56 "crop"
57 ],
58 "author": "Oliver Moran <oliver.moran@gmail.com>",
59 "license": "MIT",
60 "dependencies": {
61 "@jimp/custom": "^0.8.1",
62 "@jimp/plugins": "^0.8.1",
63 "@jimp/types": "^0.8.1",
64 "core-js": "^2.5.7",
65 "regenerator-runtime": "^0.13.3"
66 },
67 "devDependencies": {
68 "@jimp/test-utils": "^0.8.1",
69 "babelify": "^10.0.0",
70 "browserify": "^16.2.2",
71 "envify": "^4.1.0",
72 "express": "^4.16.3",
73 "tfilter": "^1.0.1",
74 "uglify-js": "^3.4.9"
75 },
76 "xo": false,
77 "nyc": {
78 "sourceMap": false,
79 "instrument": false,
80 "reporter": [
81 "text",
82 "text-summary",
83 "lcov",
84 "html"
85 ],
86 "exclude": [
87 "src/modules/*.js",
88 "test/*.js"
89 ]
90 },
91 "gitHead": "4242e41056cdbab8080c45c22e47716864a29503"
92}