UNPKG

3.53 kBJSONView Raw
1{
2 "name": "jimp",
3 "version": "0.16.4",
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 "typesVersions": {
9 ">=3.1.0-0": {
10 "*": [
11 "types/ts3.1/index.d.ts"
12 ]
13 }
14 },
15 "tonicExampleFilename": "example.js",
16 "files": [
17 "browser",
18 "dist",
19 "es",
20 "index.d.ts",
21 "fonts",
22 "types"
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 "@babel/runtime": "^7.7.2",
62 "@jimp/custom": "^0.16.4",
63 "@jimp/plugins": "^0.16.4",
64 "@jimp/types": "^0.16.4",
65 "regenerator-runtime": "^0.13.3"
66 },
67 "devDependencies": {
68 "@babel/cli": "^7.7.0",
69 "@babel/core": "^7.7.2",
70 "@babel/plugin-proposal-class-properties": "^7.7.0",
71 "@babel/plugin-syntax-object-rest-spread": "^7.2.0",
72 "@babel/preset-env": "^7.7.1",
73 "@babel/register": "^7.7.0",
74 "@jimp/test-utils": "^0.16.4",
75 "babel-eslint": "^10.0.3",
76 "babel-plugin-add-module-exports": "^1.0.2",
77 "babel-plugin-istanbul": "^5.2.0",
78 "babel-plugin-source-map-support": "^2.1.1",
79 "babelify": "^10.0.0",
80 "browserify": "^16.5.0",
81 "cross-env": "^6.0.0",
82 "dtslint": "^0.9.8",
83 "envify": "^4.1.0",
84 "eslint": "^6.4.0",
85 "express": "^4.17.1",
86 "husky": "^3.0.5",
87 "karma": "^4.3.0",
88 "karma-browserify": "^6.1.0",
89 "karma-chrome-launcher": "^3.1.0",
90 "karma-firefox-launcher": "^1.2.0",
91 "lerna": "^3.16.4",
92 "lerna-changelog": "^0.8.2",
93 "lint-staged": "^9.2.5",
94 "mocha": "^6.2.0",
95 "nyc": "^14.1.1",
96 "source-map-support": "^0.5.13",
97 "tfilter": "^1.0.1",
98 "uglify-js": "^3.6.0",
99 "watchify": "^3.11.1",
100 "xo": "^0.24.0"
101 },
102 "xo": false,
103 "nyc": {
104 "sourceMap": false,
105 "instrument": false,
106 "reporter": [
107 "text",
108 "text-summary",
109 "lcov",
110 "html"
111 ],
112 "exclude": [
113 "src/modules/*.js",
114 "test/*.js"
115 ]
116 },
117 "gitHead": "e85d45a84fd90d0cc1b93eba1d560b167f75434c"
118}